com.amazonaws.services.ec2.model.TransitGatewayOptions Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2019-2024 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 the options for a transit gateway.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class TransitGatewayOptions implements Serializable, Cloneable {
/**
*
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for
* 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
*
*/
private Long amazonSideAsn;
/**
*
* The transit gateway CIDR blocks.
*
*/
private com.amazonaws.internal.SdkInternalList transitGatewayCidrBlocks;
/**
*
* Indicates whether attachment requests are automatically accepted.
*
*/
private String autoAcceptSharedAttachments;
/**
*
* Indicates whether resource attachments are automatically associated with the default association route table.
*
*/
private String defaultRouteTableAssociation;
/**
*
* The ID of the default association route table.
*
*/
private String associationDefaultRouteTableId;
/**
*
* Indicates whether resource attachments automatically propagate routes to the default propagation route table.
*
*/
private String defaultRouteTablePropagation;
/**
*
* The ID of the default propagation route table.
*
*/
private String propagationDefaultRouteTableId;
/**
*
* Indicates whether Equal Cost Multipath Protocol support is enabled.
*
*/
private String vpnEcmpSupport;
/**
*
* Indicates whether DNS support is enabled.
*
*/
private String dnsSupport;
/**
*
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to
* simplify security group management and control of instance-to-instance traffic across VPCs that are connected by
* transit gateway. You can also use this option to migrate from VPC peering (which was the only option that
* supported security group referencing) to transit gateways (which now also support security group referencing).
* This option is disabled by default and there are no additional costs to use this feature.
*
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
*
*/
private String securityGroupReferencingSupport;
/**
*
* Indicates whether multicast is enabled on the transit gateway
*
*/
private String multicastSupport;
/**
*
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for
* 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
*
*
* @param amazonSideAsn
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534
* for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
*/
public void setAmazonSideAsn(Long amazonSideAsn) {
this.amazonSideAsn = amazonSideAsn;
}
/**
*
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for
* 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
*
*
* @return A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to
* 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
*/
public Long getAmazonSideAsn() {
return this.amazonSideAsn;
}
/**
*
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for
* 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
*
*
* @param amazonSideAsn
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534
* for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayOptions withAmazonSideAsn(Long amazonSideAsn) {
setAmazonSideAsn(amazonSideAsn);
return this;
}
/**
*
* The transit gateway CIDR blocks.
*
*
* @return The transit gateway CIDR blocks.
*/
public java.util.List getTransitGatewayCidrBlocks() {
if (transitGatewayCidrBlocks == null) {
transitGatewayCidrBlocks = new com.amazonaws.internal.SdkInternalList();
}
return transitGatewayCidrBlocks;
}
/**
*
* The transit gateway CIDR blocks.
*
*
* @param transitGatewayCidrBlocks
* The transit gateway CIDR blocks.
*/
public void setTransitGatewayCidrBlocks(java.util.Collection transitGatewayCidrBlocks) {
if (transitGatewayCidrBlocks == null) {
this.transitGatewayCidrBlocks = null;
return;
}
this.transitGatewayCidrBlocks = new com.amazonaws.internal.SdkInternalList(transitGatewayCidrBlocks);
}
/**
*
* The transit gateway CIDR blocks.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTransitGatewayCidrBlocks(java.util.Collection)} or
* {@link #withTransitGatewayCidrBlocks(java.util.Collection)} if you want to override the existing values.
*
*
* @param transitGatewayCidrBlocks
* The transit gateway CIDR blocks.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayOptions withTransitGatewayCidrBlocks(String... transitGatewayCidrBlocks) {
if (this.transitGatewayCidrBlocks == null) {
setTransitGatewayCidrBlocks(new com.amazonaws.internal.SdkInternalList(transitGatewayCidrBlocks.length));
}
for (String ele : transitGatewayCidrBlocks) {
this.transitGatewayCidrBlocks.add(ele);
}
return this;
}
/**
*
* The transit gateway CIDR blocks.
*
*
* @param transitGatewayCidrBlocks
* The transit gateway CIDR blocks.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayOptions withTransitGatewayCidrBlocks(java.util.Collection transitGatewayCidrBlocks) {
setTransitGatewayCidrBlocks(transitGatewayCidrBlocks);
return this;
}
/**
*
* Indicates whether attachment requests are automatically accepted.
*
*
* @param autoAcceptSharedAttachments
* Indicates whether attachment requests are automatically accepted.
* @see AutoAcceptSharedAttachmentsValue
*/
public void setAutoAcceptSharedAttachments(String autoAcceptSharedAttachments) {
this.autoAcceptSharedAttachments = autoAcceptSharedAttachments;
}
/**
*
* Indicates whether attachment requests are automatically accepted.
*
*
* @return Indicates whether attachment requests are automatically accepted.
* @see AutoAcceptSharedAttachmentsValue
*/
public String getAutoAcceptSharedAttachments() {
return this.autoAcceptSharedAttachments;
}
/**
*
* Indicates whether attachment requests are automatically accepted.
*
*
* @param autoAcceptSharedAttachments
* Indicates whether attachment requests are automatically accepted.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AutoAcceptSharedAttachmentsValue
*/
public TransitGatewayOptions withAutoAcceptSharedAttachments(String autoAcceptSharedAttachments) {
setAutoAcceptSharedAttachments(autoAcceptSharedAttachments);
return this;
}
/**
*
* Indicates whether attachment requests are automatically accepted.
*
*
* @param autoAcceptSharedAttachments
* Indicates whether attachment requests are automatically accepted.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AutoAcceptSharedAttachmentsValue
*/
public TransitGatewayOptions withAutoAcceptSharedAttachments(AutoAcceptSharedAttachmentsValue autoAcceptSharedAttachments) {
this.autoAcceptSharedAttachments = autoAcceptSharedAttachments.toString();
return this;
}
/**
*
* Indicates whether resource attachments are automatically associated with the default association route table.
*
*
* @param defaultRouteTableAssociation
* Indicates whether resource attachments are automatically associated with the default association route
* table.
* @see DefaultRouteTableAssociationValue
*/
public void setDefaultRouteTableAssociation(String defaultRouteTableAssociation) {
this.defaultRouteTableAssociation = defaultRouteTableAssociation;
}
/**
*
* Indicates whether resource attachments are automatically associated with the default association route table.
*
*
* @return Indicates whether resource attachments are automatically associated with the default association route
* table.
* @see DefaultRouteTableAssociationValue
*/
public String getDefaultRouteTableAssociation() {
return this.defaultRouteTableAssociation;
}
/**
*
* Indicates whether resource attachments are automatically associated with the default association route table.
*
*
* @param defaultRouteTableAssociation
* Indicates whether resource attachments are automatically associated with the default association route
* table.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DefaultRouteTableAssociationValue
*/
public TransitGatewayOptions withDefaultRouteTableAssociation(String defaultRouteTableAssociation) {
setDefaultRouteTableAssociation(defaultRouteTableAssociation);
return this;
}
/**
*
* Indicates whether resource attachments are automatically associated with the default association route table.
*
*
* @param defaultRouteTableAssociation
* Indicates whether resource attachments are automatically associated with the default association route
* table.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DefaultRouteTableAssociationValue
*/
public TransitGatewayOptions withDefaultRouteTableAssociation(DefaultRouteTableAssociationValue defaultRouteTableAssociation) {
this.defaultRouteTableAssociation = defaultRouteTableAssociation.toString();
return this;
}
/**
*
* The ID of the default association route table.
*
*
* @param associationDefaultRouteTableId
* The ID of the default association route table.
*/
public void setAssociationDefaultRouteTableId(String associationDefaultRouteTableId) {
this.associationDefaultRouteTableId = associationDefaultRouteTableId;
}
/**
*
* The ID of the default association route table.
*
*
* @return The ID of the default association route table.
*/
public String getAssociationDefaultRouteTableId() {
return this.associationDefaultRouteTableId;
}
/**
*
* The ID of the default association route table.
*
*
* @param associationDefaultRouteTableId
* The ID of the default association route table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayOptions withAssociationDefaultRouteTableId(String associationDefaultRouteTableId) {
setAssociationDefaultRouteTableId(associationDefaultRouteTableId);
return this;
}
/**
*
* Indicates whether resource attachments automatically propagate routes to the default propagation route table.
*
*
* @param defaultRouteTablePropagation
* Indicates whether resource attachments automatically propagate routes to the default propagation route
* table.
* @see DefaultRouteTablePropagationValue
*/
public void setDefaultRouteTablePropagation(String defaultRouteTablePropagation) {
this.defaultRouteTablePropagation = defaultRouteTablePropagation;
}
/**
*
* Indicates whether resource attachments automatically propagate routes to the default propagation route table.
*
*
* @return Indicates whether resource attachments automatically propagate routes to the default propagation route
* table.
* @see DefaultRouteTablePropagationValue
*/
public String getDefaultRouteTablePropagation() {
return this.defaultRouteTablePropagation;
}
/**
*
* Indicates whether resource attachments automatically propagate routes to the default propagation route table.
*
*
* @param defaultRouteTablePropagation
* Indicates whether resource attachments automatically propagate routes to the default propagation route
* table.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DefaultRouteTablePropagationValue
*/
public TransitGatewayOptions withDefaultRouteTablePropagation(String defaultRouteTablePropagation) {
setDefaultRouteTablePropagation(defaultRouteTablePropagation);
return this;
}
/**
*
* Indicates whether resource attachments automatically propagate routes to the default propagation route table.
*
*
* @param defaultRouteTablePropagation
* Indicates whether resource attachments automatically propagate routes to the default propagation route
* table.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DefaultRouteTablePropagationValue
*/
public TransitGatewayOptions withDefaultRouteTablePropagation(DefaultRouteTablePropagationValue defaultRouteTablePropagation) {
this.defaultRouteTablePropagation = defaultRouteTablePropagation.toString();
return this;
}
/**
*
* The ID of the default propagation route table.
*
*
* @param propagationDefaultRouteTableId
* The ID of the default propagation route table.
*/
public void setPropagationDefaultRouteTableId(String propagationDefaultRouteTableId) {
this.propagationDefaultRouteTableId = propagationDefaultRouteTableId;
}
/**
*
* The ID of the default propagation route table.
*
*
* @return The ID of the default propagation route table.
*/
public String getPropagationDefaultRouteTableId() {
return this.propagationDefaultRouteTableId;
}
/**
*
* The ID of the default propagation route table.
*
*
* @param propagationDefaultRouteTableId
* The ID of the default propagation route table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayOptions withPropagationDefaultRouteTableId(String propagationDefaultRouteTableId) {
setPropagationDefaultRouteTableId(propagationDefaultRouteTableId);
return this;
}
/**
*
* Indicates whether Equal Cost Multipath Protocol support is enabled.
*
*
* @param vpnEcmpSupport
* Indicates whether Equal Cost Multipath Protocol support is enabled.
* @see VpnEcmpSupportValue
*/
public void setVpnEcmpSupport(String vpnEcmpSupport) {
this.vpnEcmpSupport = vpnEcmpSupport;
}
/**
*
* Indicates whether Equal Cost Multipath Protocol support is enabled.
*
*
* @return Indicates whether Equal Cost Multipath Protocol support is enabled.
* @see VpnEcmpSupportValue
*/
public String getVpnEcmpSupport() {
return this.vpnEcmpSupport;
}
/**
*
* Indicates whether Equal Cost Multipath Protocol support is enabled.
*
*
* @param vpnEcmpSupport
* Indicates whether Equal Cost Multipath Protocol support is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VpnEcmpSupportValue
*/
public TransitGatewayOptions withVpnEcmpSupport(String vpnEcmpSupport) {
setVpnEcmpSupport(vpnEcmpSupport);
return this;
}
/**
*
* Indicates whether Equal Cost Multipath Protocol support is enabled.
*
*
* @param vpnEcmpSupport
* Indicates whether Equal Cost Multipath Protocol support is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see VpnEcmpSupportValue
*/
public TransitGatewayOptions withVpnEcmpSupport(VpnEcmpSupportValue vpnEcmpSupport) {
this.vpnEcmpSupport = vpnEcmpSupport.toString();
return this;
}
/**
*
* Indicates whether DNS support is enabled.
*
*
* @param dnsSupport
* Indicates whether DNS support is enabled.
* @see DnsSupportValue
*/
public void setDnsSupport(String dnsSupport) {
this.dnsSupport = dnsSupport;
}
/**
*
* Indicates whether DNS support is enabled.
*
*
* @return Indicates whether DNS support is enabled.
* @see DnsSupportValue
*/
public String getDnsSupport() {
return this.dnsSupport;
}
/**
*
* Indicates whether DNS support is enabled.
*
*
* @param dnsSupport
* Indicates whether DNS support is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DnsSupportValue
*/
public TransitGatewayOptions withDnsSupport(String dnsSupport) {
setDnsSupport(dnsSupport);
return this;
}
/**
*
* Indicates whether DNS support is enabled.
*
*
* @param dnsSupport
* Indicates whether DNS support is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DnsSupportValue
*/
public TransitGatewayOptions withDnsSupport(DnsSupportValue dnsSupport) {
this.dnsSupport = dnsSupport.toString();
return this;
}
/**
*
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to
* simplify security group management and control of instance-to-instance traffic across VPCs that are connected by
* transit gateway. You can also use this option to migrate from VPC peering (which was the only option that
* supported security group referencing) to transit gateways (which now also support security group referencing).
* This option is disabled by default and there are no additional costs to use this feature.
*
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
*
*
* @param securityGroupReferencingSupport
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option
* to simplify security group management and control of instance-to-instance traffic across VPCs that are
* connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only
* option that supported security group referencing) to transit gateways (which now also support security
* group referencing). This option is disabled by default and there are no additional costs to use this
* feature.
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
* @see SecurityGroupReferencingSupportValue
*/
public void setSecurityGroupReferencingSupport(String securityGroupReferencingSupport) {
this.securityGroupReferencingSupport = securityGroupReferencingSupport;
}
/**
*
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to
* simplify security group management and control of instance-to-instance traffic across VPCs that are connected by
* transit gateway. You can also use this option to migrate from VPC peering (which was the only option that
* supported security group referencing) to transit gateways (which now also support security group referencing).
* This option is disabled by default and there are no additional costs to use this feature.
*
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
*
*
* @return Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this
* option to simplify security group management and control of instance-to-instance traffic across VPCs that
* are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the
* only option that supported security group referencing) to transit gateways (which now also support
* security group referencing). This option is disabled by default and there are no additional costs to use
* this feature.
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
* @see SecurityGroupReferencingSupportValue
*/
public String getSecurityGroupReferencingSupport() {
return this.securityGroupReferencingSupport;
}
/**
*
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to
* simplify security group management and control of instance-to-instance traffic across VPCs that are connected by
* transit gateway. You can also use this option to migrate from VPC peering (which was the only option that
* supported security group referencing) to transit gateways (which now also support security group referencing).
* This option is disabled by default and there are no additional costs to use this feature.
*
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
*
*
* @param securityGroupReferencingSupport
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option
* to simplify security group management and control of instance-to-instance traffic across VPCs that are
* connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only
* option that supported security group referencing) to transit gateways (which now also support security
* group referencing). This option is disabled by default and there are no additional costs to use this
* feature.
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SecurityGroupReferencingSupportValue
*/
public TransitGatewayOptions withSecurityGroupReferencingSupport(String securityGroupReferencingSupport) {
setSecurityGroupReferencingSupport(securityGroupReferencingSupport);
return this;
}
/**
*
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option to
* simplify security group management and control of instance-to-instance traffic across VPCs that are connected by
* transit gateway. You can also use this option to migrate from VPC peering (which was the only option that
* supported security group referencing) to transit gateways (which now also support security group referencing).
* This option is disabled by default and there are no additional costs to use this feature.
*
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
*
*
* @param securityGroupReferencingSupport
* Enables you to reference a security group across VPCs attached to a transit gateway (TGW). Use this option
* to simplify security group management and control of instance-to-instance traffic across VPCs that are
* connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only
* option that supported security group referencing) to transit gateways (which now also support security
* group referencing). This option is disabled by default and there are no additional costs to use this
* feature.
*
* For important information about this feature, see Create a transit
* gateway in the Amazon Web Services Transit Gateway Guide.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SecurityGroupReferencingSupportValue
*/
public TransitGatewayOptions withSecurityGroupReferencingSupport(SecurityGroupReferencingSupportValue securityGroupReferencingSupport) {
this.securityGroupReferencingSupport = securityGroupReferencingSupport.toString();
return this;
}
/**
*
* Indicates whether multicast is enabled on the transit gateway
*
*
* @param multicastSupport
* Indicates whether multicast is enabled on the transit gateway
* @see MulticastSupportValue
*/
public void setMulticastSupport(String multicastSupport) {
this.multicastSupport = multicastSupport;
}
/**
*
* Indicates whether multicast is enabled on the transit gateway
*
*
* @return Indicates whether multicast is enabled on the transit gateway
* @see MulticastSupportValue
*/
public String getMulticastSupport() {
return this.multicastSupport;
}
/**
*
* Indicates whether multicast is enabled on the transit gateway
*
*
* @param multicastSupport
* Indicates whether multicast is enabled on the transit gateway
* @return Returns a reference to this object so that method calls can be chained together.
* @see MulticastSupportValue
*/
public TransitGatewayOptions withMulticastSupport(String multicastSupport) {
setMulticastSupport(multicastSupport);
return this;
}
/**
*
* Indicates whether multicast is enabled on the transit gateway
*
*
* @param multicastSupport
* Indicates whether multicast is enabled on the transit gateway
* @return Returns a reference to this object so that method calls can be chained together.
* @see MulticastSupportValue
*/
public TransitGatewayOptions withMulticastSupport(MulticastSupportValue multicastSupport) {
this.multicastSupport = multicastSupport.toString();
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 (getAmazonSideAsn() != null)
sb.append("AmazonSideAsn: ").append(getAmazonSideAsn()).append(",");
if (getTransitGatewayCidrBlocks() != null)
sb.append("TransitGatewayCidrBlocks: ").append(getTransitGatewayCidrBlocks()).append(",");
if (getAutoAcceptSharedAttachments() != null)
sb.append("AutoAcceptSharedAttachments: ").append(getAutoAcceptSharedAttachments()).append(",");
if (getDefaultRouteTableAssociation() != null)
sb.append("DefaultRouteTableAssociation: ").append(getDefaultRouteTableAssociation()).append(",");
if (getAssociationDefaultRouteTableId() != null)
sb.append("AssociationDefaultRouteTableId: ").append(getAssociationDefaultRouteTableId()).append(",");
if (getDefaultRouteTablePropagation() != null)
sb.append("DefaultRouteTablePropagation: ").append(getDefaultRouteTablePropagation()).append(",");
if (getPropagationDefaultRouteTableId() != null)
sb.append("PropagationDefaultRouteTableId: ").append(getPropagationDefaultRouteTableId()).append(",");
if (getVpnEcmpSupport() != null)
sb.append("VpnEcmpSupport: ").append(getVpnEcmpSupport()).append(",");
if (getDnsSupport() != null)
sb.append("DnsSupport: ").append(getDnsSupport()).append(",");
if (getSecurityGroupReferencingSupport() != null)
sb.append("SecurityGroupReferencingSupport: ").append(getSecurityGroupReferencingSupport()).append(",");
if (getMulticastSupport() != null)
sb.append("MulticastSupport: ").append(getMulticastSupport());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof TransitGatewayOptions == false)
return false;
TransitGatewayOptions other = (TransitGatewayOptions) obj;
if (other.getAmazonSideAsn() == null ^ this.getAmazonSideAsn() == null)
return false;
if (other.getAmazonSideAsn() != null && other.getAmazonSideAsn().equals(this.getAmazonSideAsn()) == false)
return false;
if (other.getTransitGatewayCidrBlocks() == null ^ this.getTransitGatewayCidrBlocks() == null)
return false;
if (other.getTransitGatewayCidrBlocks() != null && other.getTransitGatewayCidrBlocks().equals(this.getTransitGatewayCidrBlocks()) == false)
return false;
if (other.getAutoAcceptSharedAttachments() == null ^ this.getAutoAcceptSharedAttachments() == null)
return false;
if (other.getAutoAcceptSharedAttachments() != null && other.getAutoAcceptSharedAttachments().equals(this.getAutoAcceptSharedAttachments()) == false)
return false;
if (other.getDefaultRouteTableAssociation() == null ^ this.getDefaultRouteTableAssociation() == null)
return false;
if (other.getDefaultRouteTableAssociation() != null && other.getDefaultRouteTableAssociation().equals(this.getDefaultRouteTableAssociation()) == false)
return false;
if (other.getAssociationDefaultRouteTableId() == null ^ this.getAssociationDefaultRouteTableId() == null)
return false;
if (other.getAssociationDefaultRouteTableId() != null
&& other.getAssociationDefaultRouteTableId().equals(this.getAssociationDefaultRouteTableId()) == false)
return false;
if (other.getDefaultRouteTablePropagation() == null ^ this.getDefaultRouteTablePropagation() == null)
return false;
if (other.getDefaultRouteTablePropagation() != null && other.getDefaultRouteTablePropagation().equals(this.getDefaultRouteTablePropagation()) == false)
return false;
if (other.getPropagationDefaultRouteTableId() == null ^ this.getPropagationDefaultRouteTableId() == null)
return false;
if (other.getPropagationDefaultRouteTableId() != null
&& other.getPropagationDefaultRouteTableId().equals(this.getPropagationDefaultRouteTableId()) == false)
return false;
if (other.getVpnEcmpSupport() == null ^ this.getVpnEcmpSupport() == null)
return false;
if (other.getVpnEcmpSupport() != null && other.getVpnEcmpSupport().equals(this.getVpnEcmpSupport()) == false)
return false;
if (other.getDnsSupport() == null ^ this.getDnsSupport() == null)
return false;
if (other.getDnsSupport() != null && other.getDnsSupport().equals(this.getDnsSupport()) == false)
return false;
if (other.getSecurityGroupReferencingSupport() == null ^ this.getSecurityGroupReferencingSupport() == null)
return false;
if (other.getSecurityGroupReferencingSupport() != null
&& other.getSecurityGroupReferencingSupport().equals(this.getSecurityGroupReferencingSupport()) == false)
return false;
if (other.getMulticastSupport() == null ^ this.getMulticastSupport() == null)
return false;
if (other.getMulticastSupport() != null && other.getMulticastSupport().equals(this.getMulticastSupport()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getAmazonSideAsn() == null) ? 0 : getAmazonSideAsn().hashCode());
hashCode = prime * hashCode + ((getTransitGatewayCidrBlocks() == null) ? 0 : getTransitGatewayCidrBlocks().hashCode());
hashCode = prime * hashCode + ((getAutoAcceptSharedAttachments() == null) ? 0 : getAutoAcceptSharedAttachments().hashCode());
hashCode = prime * hashCode + ((getDefaultRouteTableAssociation() == null) ? 0 : getDefaultRouteTableAssociation().hashCode());
hashCode = prime * hashCode + ((getAssociationDefaultRouteTableId() == null) ? 0 : getAssociationDefaultRouteTableId().hashCode());
hashCode = prime * hashCode + ((getDefaultRouteTablePropagation() == null) ? 0 : getDefaultRouteTablePropagation().hashCode());
hashCode = prime * hashCode + ((getPropagationDefaultRouteTableId() == null) ? 0 : getPropagationDefaultRouteTableId().hashCode());
hashCode = prime * hashCode + ((getVpnEcmpSupport() == null) ? 0 : getVpnEcmpSupport().hashCode());
hashCode = prime * hashCode + ((getDnsSupport() == null) ? 0 : getDnsSupport().hashCode());
hashCode = prime * hashCode + ((getSecurityGroupReferencingSupport() == null) ? 0 : getSecurityGroupReferencingSupport().hashCode());
hashCode = prime * hashCode + ((getMulticastSupport() == null) ? 0 : getMulticastSupport().hashCode());
return hashCode;
}
@Override
public TransitGatewayOptions clone() {
try {
return (TransitGatewayOptions) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}