All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.VpnConnectionOptionsSpecification Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2017-2022 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 *

*/ private Boolean 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 *

*/ private Boolean staticRoutesOnly; /** *

* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *

*

* Default: ipv4 *

*/ private String tunnelInsideIpVersion; /** *

* The tunnel options for the VPN connection. *

*/ private com.amazonaws.internal.SdkInternalList tunnelOptions; /** *

* The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *

*

* Default: 0.0.0.0/0 *

*/ private String localIpv4NetworkCidr; /** *

* The IPv4 CIDR on the Amazon Web Services side of the VPN connection. *

*

* Default: 0.0.0.0/0 *

*/ private String remoteIpv4NetworkCidr; /** *

* The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *

*

* Default: ::/0 *

*/ private String localIpv6NetworkCidr; /** *

* The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *

*

* Default: ::/0 *

*/ private String remoteIpv6NetworkCidr; /** *

* Indicate whether to enable acceleration for the VPN connection. *

*

* Default: false *

* * @param enableAcceleration * Indicate whether to enable acceleration for the VPN connection.

*

* Default: false */ public void setEnableAcceleration(Boolean enableAcceleration) { this.enableAcceleration = enableAcceleration; } /** *

* Indicate whether to enable acceleration for the VPN connection. *

*

* Default: false *

* * @return Indicate whether to enable acceleration for the VPN connection.

*

* Default: false */ public Boolean getEnableAcceleration() { return this.enableAcceleration; } /** *

* Indicate whether to enable acceleration for the VPN connection. *

*

* Default: false *

* * @param enableAcceleration * Indicate whether to enable acceleration for the VPN connection.

*

* 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 *

* * @return Indicate whether to enable acceleration for the VPN connection.

*

* 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 *

* * @param 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 */ 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 *

* * @return 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 */ 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 *

* * @param 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 * @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 *

* * @return 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 */ public Boolean isStaticRoutesOnly() { return this.staticRoutesOnly; } /** *

* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *

*

* Default: ipv4 *

* * @param tunnelInsideIpVersion * Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.

*

* Default: ipv4 * @see TunnelInsideIpVersion */ public void setTunnelInsideIpVersion(String tunnelInsideIpVersion) { this.tunnelInsideIpVersion = tunnelInsideIpVersion; } /** *

* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *

*

* Default: ipv4 *

* * @return Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.

*

* Default: ipv4 * @see TunnelInsideIpVersion */ public String getTunnelInsideIpVersion() { return this.tunnelInsideIpVersion; } /** *

* Indicate whether the VPN tunnels process IPv4 or IPv6 traffic. *

*

* Default: ipv4 *

* * @param tunnelInsideIpVersion * Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.

*

* 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 *

* * @param tunnelInsideIpVersion * Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.

*

* 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 getTunnelOptions() { if (tunnelOptions == null) { tunnelOptions = new com.amazonaws.internal.SdkInternalList(); } return tunnelOptions; } /** *

* The tunnel options for the VPN connection. *

* * @param tunnelOptions * The tunnel options for the VPN connection. */ public void setTunnelOptions(java.util.Collection tunnelOptions) { if (tunnelOptions == null) { this.tunnelOptions = null; return; } this.tunnelOptions = new com.amazonaws.internal.SdkInternalList(tunnelOptions); } /** *

* 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(tunnelOptions.length)); } for (VpnTunnelOptionsSpecification ele : tunnelOptions) { this.tunnelOptions.add(ele); } return this; } /** *

* 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 tunnelOptions) { setTunnelOptions(tunnelOptions); return this; } /** *

* The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection. *

*

* Default: 0.0.0.0/0 *

* * @param localIpv4NetworkCidr * The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

*

* 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 *

* * @return The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

*

* 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 *

* * @param localIpv4NetworkCidr * The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

*

* 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 *

* * @param remoteIpv4NetworkCidr * The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

*

* 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 *

* * @return The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

*

* 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 *

* * @param remoteIpv4NetworkCidr * The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

*

* 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 *

* * @param localIpv6NetworkCidr * The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

*

* 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 *

* * @return The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

*

* Default: ::/0 */ public String getLocalIpv6NetworkCidr() { return this.localIpv6NetworkCidr; } /** *

* The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection. *

*

* Default: ::/0 *

* * @param localIpv6NetworkCidr * The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

*

* 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 *

* * @param remoteIpv6NetworkCidr * The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

*

* 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 *

* * @return The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

*

* Default: ::/0 */ public String getRemoteIpv6NetworkCidr() { return this.remoteIpv6NetworkCidr; } /** *

* The IPv6 CIDR on the Amazon Web Services side of the VPN connection. *

*

* Default: ::/0 *

* * @param remoteIpv6NetworkCidr * The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

*

* 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; } /** * 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()); 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; 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()); 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); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy