/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.ec2.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Describes VPN connection options. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class VpnConnectionOptions implements Serializable, Cloneable { /** ** Indicates whether acceleration is enabled for the VPN connection. *
*/ private Boolean enableAcceleration; /** ** Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't * support BGP. *
*/ private Boolean staticRoutesOnly; /** ** The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*/ private String localIpv4NetworkCidr; /** ** The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
*/ private String remoteIpv4NetworkCidr; /** ** The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*/ private String localIpv6NetworkCidr; /** ** The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
*/ private String remoteIpv6NetworkCidr; /** ** The type of IPv4 address assigned to the outside interface of the customer gateway. *
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
*
* The transit gateway attachment ID in use for the VPN tunnel. *
*/ private String transportTransitGatewayAttachmentId; /** ** Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. *
*/ private String tunnelInsideIpVersion; /** ** Indicates the VPN tunnel options. *
*/ private com.amazonaws.internal.SdkInternalList* Indicates whether acceleration is enabled for the VPN connection. *
* * @param enableAcceleration * Indicates whether acceleration is enabled for the VPN connection. */ public void setEnableAcceleration(Boolean enableAcceleration) { this.enableAcceleration = enableAcceleration; } /** ** Indicates whether acceleration is enabled for the VPN connection. *
* * @return Indicates whether acceleration is enabled for the VPN connection. */ public Boolean getEnableAcceleration() { return this.enableAcceleration; } /** ** Indicates whether acceleration is enabled for the VPN connection. *
* * @param enableAcceleration * Indicates whether acceleration is enabled for the VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withEnableAcceleration(Boolean enableAcceleration) { setEnableAcceleration(enableAcceleration); return this; } /** ** Indicates whether acceleration is enabled for the VPN connection. *
* * @return Indicates whether acceleration is enabled for the VPN connection. */ public Boolean isEnableAcceleration() { return this.enableAcceleration; } /** ** Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't * support BGP. *
* * @param staticRoutesOnly * Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that * don't support BGP. */ public void setStaticRoutesOnly(Boolean staticRoutesOnly) { this.staticRoutesOnly = staticRoutesOnly; } /** ** Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't * support BGP. *
* * @return Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that * don't support BGP. */ public Boolean getStaticRoutesOnly() { return this.staticRoutesOnly; } /** ** Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't * support BGP. *
* * @param staticRoutesOnly * Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that * don't support BGP. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withStaticRoutesOnly(Boolean staticRoutesOnly) { setStaticRoutesOnly(staticRoutesOnly); return this; } /** ** Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don't * support BGP. *
* * @return Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that * don't support BGP. */ public Boolean isStaticRoutesOnly() { return this.staticRoutesOnly; } /** ** The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
* * @param localIpv4NetworkCidr * The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. */ public void setLocalIpv4NetworkCidr(String localIpv4NetworkCidr) { this.localIpv4NetworkCidr = localIpv4NetworkCidr; } /** ** The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
* * @return The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. */ public String getLocalIpv4NetworkCidr() { return this.localIpv4NetworkCidr; } /** ** The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
* * @param localIpv4NetworkCidr * The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withLocalIpv4NetworkCidr(String localIpv4NetworkCidr) { setLocalIpv4NetworkCidr(localIpv4NetworkCidr); return this; } /** ** The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
* * @param remoteIpv4NetworkCidr * The IPv4 CIDR on the Amazon Web Services side of the VPN connection. */ public void setRemoteIpv4NetworkCidr(String remoteIpv4NetworkCidr) { this.remoteIpv4NetworkCidr = remoteIpv4NetworkCidr; } /** ** The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
* * @return The IPv4 CIDR on the Amazon Web Services side of the VPN connection. */ public String getRemoteIpv4NetworkCidr() { return this.remoteIpv4NetworkCidr; } /** ** The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
* * @param remoteIpv4NetworkCidr * The IPv4 CIDR on the Amazon Web Services side of the VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withRemoteIpv4NetworkCidr(String remoteIpv4NetworkCidr) { setRemoteIpv4NetworkCidr(remoteIpv4NetworkCidr); return this; } /** ** The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
* * @param localIpv6NetworkCidr * The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. */ public void setLocalIpv6NetworkCidr(String localIpv6NetworkCidr) { this.localIpv6NetworkCidr = localIpv6NetworkCidr; } /** ** The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
* * @return The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. */ public String getLocalIpv6NetworkCidr() { return this.localIpv6NetworkCidr; } /** ** The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
* * @param localIpv6NetworkCidr * The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withLocalIpv6NetworkCidr(String localIpv6NetworkCidr) { setLocalIpv6NetworkCidr(localIpv6NetworkCidr); return this; } /** ** The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
* * @param remoteIpv6NetworkCidr * The IPv6 CIDR on the Amazon Web Services side of the VPN connection. */ public void setRemoteIpv6NetworkCidr(String remoteIpv6NetworkCidr) { this.remoteIpv6NetworkCidr = remoteIpv6NetworkCidr; } /** ** The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
* * @return The IPv6 CIDR on the Amazon Web Services side of the VPN connection. */ public String getRemoteIpv6NetworkCidr() { return this.remoteIpv6NetworkCidr; } /** ** The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
* * @param remoteIpv6NetworkCidr * The IPv6 CIDR on the Amazon Web Services side of the VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withRemoteIpv6NetworkCidr(String remoteIpv6NetworkCidr) { setRemoteIpv6NetworkCidr(remoteIpv6NetworkCidr); return this; } /** ** The type of IPv4 address assigned to the outside interface of the customer gateway. *
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
*/
public void setOutsideIpAddressType(String outsideIpAddressType) {
this.outsideIpAddressType = outsideIpAddressType;
}
/**
*
* The type of IPv4 address assigned to the outside interface of the customer gateway. *
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
*/
public String getOutsideIpAddressType() {
return this.outsideIpAddressType;
}
/**
*
* The type of IPv4 address assigned to the outside interface of the customer gateway. *
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptions withOutsideIpAddressType(String outsideIpAddressType) {
setOutsideIpAddressType(outsideIpAddressType);
return this;
}
/**
*
* The transit gateway attachment ID in use for the VPN tunnel. *
* * @param transportTransitGatewayAttachmentId * The transit gateway attachment ID in use for the VPN tunnel. */ public void setTransportTransitGatewayAttachmentId(String transportTransitGatewayAttachmentId) { this.transportTransitGatewayAttachmentId = transportTransitGatewayAttachmentId; } /** ** The transit gateway attachment ID in use for the VPN tunnel. *
* * @return The transit gateway attachment ID in use for the VPN tunnel. */ public String getTransportTransitGatewayAttachmentId() { return this.transportTransitGatewayAttachmentId; } /** ** The transit gateway attachment ID in use for the VPN tunnel. *
* * @param transportTransitGatewayAttachmentId * The transit gateway attachment ID in use for the VPN tunnel. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withTransportTransitGatewayAttachmentId(String transportTransitGatewayAttachmentId) { setTransportTransitGatewayAttachmentId(transportTransitGatewayAttachmentId); return this; } /** ** Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. *
* * @param tunnelInsideIpVersion * Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. * @see TunnelInsideIpVersion */ public void setTunnelInsideIpVersion(String tunnelInsideIpVersion) { this.tunnelInsideIpVersion = tunnelInsideIpVersion; } /** ** Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. *
* * @return Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. * @see TunnelInsideIpVersion */ public String getTunnelInsideIpVersion() { return this.tunnelInsideIpVersion; } /** ** Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. *
* * @param tunnelInsideIpVersion * Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. * @return Returns a reference to this object so that method calls can be chained together. * @see TunnelInsideIpVersion */ public VpnConnectionOptions withTunnelInsideIpVersion(String tunnelInsideIpVersion) { setTunnelInsideIpVersion(tunnelInsideIpVersion); return this; } /** ** Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. *
* * @param tunnelInsideIpVersion * Indicates whether the VPN tunnels process IPv4 or IPv6 traffic. * @return Returns a reference to this object so that method calls can be chained together. * @see TunnelInsideIpVersion */ public VpnConnectionOptions withTunnelInsideIpVersion(TunnelInsideIpVersion tunnelInsideIpVersion) { this.tunnelInsideIpVersion = tunnelInsideIpVersion.toString(); return this; } /** ** Indicates the VPN tunnel options. *
* * @return Indicates the VPN tunnel options. */ public java.util.List* Indicates the VPN tunnel options. *
* * @param tunnelOptions * Indicates the VPN tunnel options. */ public void setTunnelOptions(java.util.Collection* Indicates the VPN tunnel options. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTunnelOptions(java.util.Collection)} or {@link #withTunnelOptions(java.util.Collection)} if you want * to override the existing values. *
* * @param tunnelOptions * Indicates the VPN tunnel options. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withTunnelOptions(TunnelOption... tunnelOptions) { if (this.tunnelOptions == null) { setTunnelOptions(new com.amazonaws.internal.SdkInternalList* Indicates the VPN tunnel options. *
* * @param tunnelOptions * Indicates the VPN tunnel options. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptions withTunnelOptions(java.util.Collection