/* * 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 VpnConnectionOptionsSpecification implements Serializable, Cloneable { /** ** Indicate whether to enable acceleration for the VPN connection. *
*
* Default: false
*
* Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device
* that does not support BGP, you must specify true
. Use CreateVpnConnectionRoute to create a
* static route.
*
* Default: false
*
* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *
*
* Default: ipv4
*
* The tunnel options for the VPN connection. *
*/ private com.amazonaws.internal.SdkInternalList* The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: ::/0
*
* The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: ::/0
*
* The type of IPv4 address assigned to the outside interface of the customer gateway device. *
*
* Valid values: PrivateIpv4
| PublicIpv4
*
* Default: PublicIpv4
*
* The transit gateway attachment ID to use for the VPN tunnel. *
*
* Required if OutsideIpAddressType
is set to PrivateIpv4
.
*
* Indicate whether to enable acceleration for the VPN connection. *
*
* Default: false
*
* Default: false
*/
public void setEnableAcceleration(Boolean enableAcceleration) {
this.enableAcceleration = enableAcceleration;
}
/**
*
* Indicate whether to enable acceleration for the VPN connection. *
*
* Default: false
*
* Default: false
*/
public Boolean getEnableAcceleration() {
return this.enableAcceleration;
}
/**
*
* Indicate whether to enable acceleration for the VPN connection. *
*
* Default: false
*
* Default: false
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptionsSpecification withEnableAcceleration(Boolean enableAcceleration) {
setEnableAcceleration(enableAcceleration);
return this;
}
/**
*
* Indicate whether to enable acceleration for the VPN connection. *
*
* Default: false
*
* Default: false
*/
public Boolean isEnableAcceleration() {
return this.enableAcceleration;
}
/**
*
* Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device
* that does not support BGP, you must specify true
. Use CreateVpnConnectionRoute to create a
* static route.
*
* Default: false
*
true
. Use CreateVpnConnectionRoute
* to create a static route.
*
* Default: false
*/
public void setStaticRoutesOnly(Boolean staticRoutesOnly) {
this.staticRoutesOnly = staticRoutesOnly;
}
/**
*
* Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device
* that does not support BGP, you must specify true
. Use CreateVpnConnectionRoute to create a
* static route.
*
* Default: false
*
true
. Use CreateVpnConnectionRoute
* to create a static route.
*
* Default: false
*/
public Boolean getStaticRoutesOnly() {
return this.staticRoutesOnly;
}
/**
*
* Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device
* that does not support BGP, you must specify true
. Use CreateVpnConnectionRoute to create a
* static route.
*
* Default: false
*
true
. Use CreateVpnConnectionRoute
* to create a static route.
*
* Default: false
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptionsSpecification withStaticRoutesOnly(Boolean staticRoutesOnly) {
setStaticRoutesOnly(staticRoutesOnly);
return this;
}
/**
*
* Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device
* that does not support BGP, you must specify true
. Use CreateVpnConnectionRoute to create a
* static route.
*
* Default: false
*
true
. Use CreateVpnConnectionRoute
* to create a static route.
*
* Default: false
*/
public Boolean isStaticRoutesOnly() {
return this.staticRoutesOnly;
}
/**
*
* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *
*
* Default: ipv4
*
* Default: ipv4
* @see TunnelInsideIpVersion
*/
public void setTunnelInsideIpVersion(String tunnelInsideIpVersion) {
this.tunnelInsideIpVersion = tunnelInsideIpVersion;
}
/**
*
* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *
*
* Default: ipv4
*
* Default: ipv4
* @see TunnelInsideIpVersion
*/
public String getTunnelInsideIpVersion() {
return this.tunnelInsideIpVersion;
}
/**
*
* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *
*
* Default: ipv4
*
* Default: ipv4
* @return Returns a reference to this object so that method calls can be chained together.
* @see TunnelInsideIpVersion
*/
public VpnConnectionOptionsSpecification withTunnelInsideIpVersion(String tunnelInsideIpVersion) {
setTunnelInsideIpVersion(tunnelInsideIpVersion);
return this;
}
/**
*
* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *
*
* Default: ipv4
*
* Default: ipv4
* @return Returns a reference to this object so that method calls can be chained together.
* @see TunnelInsideIpVersion
*/
public VpnConnectionOptionsSpecification withTunnelInsideIpVersion(TunnelInsideIpVersion tunnelInsideIpVersion) {
this.tunnelInsideIpVersion = tunnelInsideIpVersion.toString();
return this;
}
/**
*
* The tunnel options for the VPN connection. *
* * @return The tunnel options for the VPN connection. */ public java.util.List* The tunnel options for the VPN connection. *
* * @param tunnelOptions * The tunnel options for the VPN connection. */ public void setTunnelOptions(java.util.Collection* The tunnel options for the VPN connection. *
** 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 * The tunnel options for the VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptionsSpecification withTunnelOptions(VpnTunnelOptionsSpecification... tunnelOptions) { if (this.tunnelOptions == null) { setTunnelOptions(new com.amazonaws.internal.SdkInternalList* The tunnel options for the VPN connection. *
* * @param tunnelOptions * The tunnel options for the VPN connection. * @return Returns a reference to this object so that method calls can be chained together. */ public VpnConnectionOptionsSpecification withTunnelOptions(java.util.Collection* The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* Default: 0.0.0.0/0
*/
public void setLocalIpv4NetworkCidr(String localIpv4NetworkCidr) {
this.localIpv4NetworkCidr = localIpv4NetworkCidr;
}
/**
*
* The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* Default: 0.0.0.0/0
*/
public String getLocalIpv4NetworkCidr() {
return this.localIpv4NetworkCidr;
}
/**
*
* The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* Default: 0.0.0.0/0
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptionsSpecification withLocalIpv4NetworkCidr(String localIpv4NetworkCidr) {
setLocalIpv4NetworkCidr(localIpv4NetworkCidr);
return this;
}
/**
*
* The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* Default: 0.0.0.0/0
*/
public void setRemoteIpv4NetworkCidr(String remoteIpv4NetworkCidr) {
this.remoteIpv4NetworkCidr = remoteIpv4NetworkCidr;
}
/**
*
* The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* Default: 0.0.0.0/0
*/
public String getRemoteIpv4NetworkCidr() {
return this.remoteIpv4NetworkCidr;
}
/**
*
* The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: 0.0.0.0/0
*
* Default: 0.0.0.0/0
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptionsSpecification withRemoteIpv4NetworkCidr(String remoteIpv4NetworkCidr) {
setRemoteIpv4NetworkCidr(remoteIpv4NetworkCidr);
return this;
}
/**
*
* The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: ::/0
*
* Default: ::/0
*/
public void setLocalIpv6NetworkCidr(String localIpv6NetworkCidr) {
this.localIpv6NetworkCidr = localIpv6NetworkCidr;
}
/**
*
* The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: ::/0
*
* Default: ::/0
*/
public String getLocalIpv6NetworkCidr() {
return this.localIpv6NetworkCidr;
}
/**
*
* The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *
*
* Default: ::/0
*
* Default: ::/0
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptionsSpecification withLocalIpv6NetworkCidr(String localIpv6NetworkCidr) {
setLocalIpv6NetworkCidr(localIpv6NetworkCidr);
return this;
}
/**
*
* The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: ::/0
*
* Default: ::/0
*/
public void setRemoteIpv6NetworkCidr(String remoteIpv6NetworkCidr) {
this.remoteIpv6NetworkCidr = remoteIpv6NetworkCidr;
}
/**
*
* The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: ::/0
*
* Default: ::/0
*/
public String getRemoteIpv6NetworkCidr() {
return this.remoteIpv6NetworkCidr;
}
/**
*
* The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *
*
* Default: ::/0
*
* Default: ::/0
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptionsSpecification withRemoteIpv6NetworkCidr(String remoteIpv6NetworkCidr) {
setRemoteIpv6NetworkCidr(remoteIpv6NetworkCidr);
return this;
}
/**
*
* The type of IPv4 address assigned to the outside interface of the customer gateway device. *
*
* 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 device. *
*
* 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 device. *
*
* 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 VpnConnectionOptionsSpecification withOutsideIpAddressType(String outsideIpAddressType) {
setOutsideIpAddressType(outsideIpAddressType);
return this;
}
/**
*
* The transit gateway attachment ID to use for the VPN tunnel. *
*
* Required if OutsideIpAddressType
is set to PrivateIpv4
.
*
* Required if OutsideIpAddressType
is set to PrivateIpv4
.
*/
public void setTransportTransitGatewayAttachmentId(String transportTransitGatewayAttachmentId) {
this.transportTransitGatewayAttachmentId = transportTransitGatewayAttachmentId;
}
/**
*
* The transit gateway attachment ID to use for the VPN tunnel. *
*
* Required if OutsideIpAddressType
is set to PrivateIpv4
.
*
* Required if OutsideIpAddressType
is set to PrivateIpv4
.
*/
public String getTransportTransitGatewayAttachmentId() {
return this.transportTransitGatewayAttachmentId;
}
/**
*
* The transit gateway attachment ID to use for the VPN tunnel. *
*
* Required if OutsideIpAddressType
is set to PrivateIpv4
.
*
* Required if OutsideIpAddressType
is set to PrivateIpv4
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public VpnConnectionOptionsSpecification withTransportTransitGatewayAttachmentId(String transportTransitGatewayAttachmentId) {
setTransportTransitGatewayAttachmentId(transportTransitGatewayAttachmentId);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getEnableAcceleration() != null)
sb.append("EnableAcceleration: ").append(getEnableAcceleration()).append(",");
if (getStaticRoutesOnly() != null)
sb.append("StaticRoutesOnly: ").append(getStaticRoutesOnly()).append(",");
if (getTunnelInsideIpVersion() != null)
sb.append("TunnelInsideIpVersion: ").append(getTunnelInsideIpVersion()).append(",");
if (getTunnelOptions() != null)
sb.append("TunnelOptions: ").append(getTunnelOptions()).append(",");
if (getLocalIpv4NetworkCidr() != null)
sb.append("LocalIpv4NetworkCidr: ").append(getLocalIpv4NetworkCidr()).append(",");
if (getRemoteIpv4NetworkCidr() != null)
sb.append("RemoteIpv4NetworkCidr: ").append(getRemoteIpv4NetworkCidr()).append(",");
if (getLocalIpv6NetworkCidr() != null)
sb.append("LocalIpv6NetworkCidr: ").append(getLocalIpv6NetworkCidr()).append(",");
if (getRemoteIpv6NetworkCidr() != null)
sb.append("RemoteIpv6NetworkCidr: ").append(getRemoteIpv6NetworkCidr()).append(",");
if (getOutsideIpAddressType() != null)
sb.append("OutsideIpAddressType: ").append(getOutsideIpAddressType()).append(",");
if (getTransportTransitGatewayAttachmentId() != null)
sb.append("TransportTransitGatewayAttachmentId: ").append(getTransportTransitGatewayAttachmentId());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof VpnConnectionOptionsSpecification == false)
return false;
VpnConnectionOptionsSpecification other = (VpnConnectionOptionsSpecification) obj;
if (other.getEnableAcceleration() == null ^ this.getEnableAcceleration() == null)
return false;
if (other.getEnableAcceleration() != null && other.getEnableAcceleration().equals(this.getEnableAcceleration()) == false)
return false;
if (other.getStaticRoutesOnly() == null ^ this.getStaticRoutesOnly() == null)
return false;
if (other.getStaticRoutesOnly() != null && other.getStaticRoutesOnly().equals(this.getStaticRoutesOnly()) == false)
return false;
if (other.getTunnelInsideIpVersion() == null ^ this.getTunnelInsideIpVersion() == null)
return false;
if (other.getTunnelInsideIpVersion() != null && other.getTunnelInsideIpVersion().equals(this.getTunnelInsideIpVersion()) == false)
return false;
if (other.getTunnelOptions() == null ^ this.getTunnelOptions() == null)
return false;
if (other.getTunnelOptions() != null && other.getTunnelOptions().equals(this.getTunnelOptions()) == false)
return false;
if (other.getLocalIpv4NetworkCidr() == null ^ this.getLocalIpv4NetworkCidr() == null)
return false;
if (other.getLocalIpv4NetworkCidr() != null && other.getLocalIpv4NetworkCidr().equals(this.getLocalIpv4NetworkCidr()) == false)
return false;
if (other.getRemoteIpv4NetworkCidr() == null ^ this.getRemoteIpv4NetworkCidr() == null)
return false;
if (other.getRemoteIpv4NetworkCidr() != null && other.getRemoteIpv4NetworkCidr().equals(this.getRemoteIpv4NetworkCidr()) == false)
return false;
if (other.getLocalIpv6NetworkCidr() == null ^ this.getLocalIpv6NetworkCidr() == null)
return false;
if (other.getLocalIpv6NetworkCidr() != null && other.getLocalIpv6NetworkCidr().equals(this.getLocalIpv6NetworkCidr()) == false)
return false;
if (other.getRemoteIpv6NetworkCidr() == null ^ this.getRemoteIpv6NetworkCidr() == null)
return false;
if (other.getRemoteIpv6NetworkCidr() != null && other.getRemoteIpv6NetworkCidr().equals(this.getRemoteIpv6NetworkCidr()) == false)
return false;
if (other.getOutsideIpAddressType() == null ^ this.getOutsideIpAddressType() == null)
return false;
if (other.getOutsideIpAddressType() != null && other.getOutsideIpAddressType().equals(this.getOutsideIpAddressType()) == false)
return false;
if (other.getTransportTransitGatewayAttachmentId() == null ^ this.getTransportTransitGatewayAttachmentId() == null)
return false;
if (other.getTransportTransitGatewayAttachmentId() != null
&& other.getTransportTransitGatewayAttachmentId().equals(this.getTransportTransitGatewayAttachmentId()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEnableAcceleration() == null) ? 0 : getEnableAcceleration().hashCode());
hashCode = prime * hashCode + ((getStaticRoutesOnly() == null) ? 0 : getStaticRoutesOnly().hashCode());
hashCode = prime * hashCode + ((getTunnelInsideIpVersion() == null) ? 0 : getTunnelInsideIpVersion().hashCode());
hashCode = prime * hashCode + ((getTunnelOptions() == null) ? 0 : getTunnelOptions().hashCode());
hashCode = prime * hashCode + ((getLocalIpv4NetworkCidr() == null) ? 0 : getLocalIpv4NetworkCidr().hashCode());
hashCode = prime * hashCode + ((getRemoteIpv4NetworkCidr() == null) ? 0 : getRemoteIpv4NetworkCidr().hashCode());
hashCode = prime * hashCode + ((getLocalIpv6NetworkCidr() == null) ? 0 : getLocalIpv6NetworkCidr().hashCode());
hashCode = prime * hashCode + ((getRemoteIpv6NetworkCidr() == null) ? 0 : getRemoteIpv6NetworkCidr().hashCode());
hashCode = prime * hashCode + ((getOutsideIpAddressType() == null) ? 0 : getOutsideIpAddressType().hashCode());
hashCode = prime * hashCode + ((getTransportTransitGatewayAttachmentId() == null) ? 0 : getTransportTransitGatewayAttachmentId().hashCode());
return hashCode;
}
@Override
public VpnConnectionOptionsSpecification clone() {
try {
return (VpnConnectionOptionsSpecification) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}