/* * 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.finspace.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The structure of the transit gateway and network configuration that is used to connect the kdb environment to an * internal network. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class TransitGatewayConfiguration implements Serializable, Cloneable, StructuredPojo { /** *

* The identifier of the transit gateway created by the customer to connect outbound traffics from kdb network to * your internal network. *

*/ private String transitGatewayID; /** *

* The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. After * providing, it will be added to the customer's transit gateway routing table so that the traffics could be routed * to kdb network. *

*/ private String routableCIDRSpace; /** *

* The identifier of the transit gateway created by the customer to connect outbound traffics from kdb network to * your internal network. *

* * @param transitGatewayID * The identifier of the transit gateway created by the customer to connect outbound traffics from kdb * network to your internal network. */ public void setTransitGatewayID(String transitGatewayID) { this.transitGatewayID = transitGatewayID; } /** *

* The identifier of the transit gateway created by the customer to connect outbound traffics from kdb network to * your internal network. *

* * @return The identifier of the transit gateway created by the customer to connect outbound traffics from kdb * network to your internal network. */ public String getTransitGatewayID() { return this.transitGatewayID; } /** *

* The identifier of the transit gateway created by the customer to connect outbound traffics from kdb network to * your internal network. *

* * @param transitGatewayID * The identifier of the transit gateway created by the customer to connect outbound traffics from kdb * network to your internal network. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayConfiguration withTransitGatewayID(String transitGatewayID) { setTransitGatewayID(transitGatewayID); return this; } /** *

* The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. After * providing, it will be added to the customer's transit gateway routing table so that the traffics could be routed * to kdb network. *

* * @param routableCIDRSpace * The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. * After providing, it will be added to the customer's transit gateway routing table so that the traffics * could be routed to kdb network. */ public void setRoutableCIDRSpace(String routableCIDRSpace) { this.routableCIDRSpace = routableCIDRSpace; } /** *

* The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. After * providing, it will be added to the customer's transit gateway routing table so that the traffics could be routed * to kdb network. *

* * @return The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. * After providing, it will be added to the customer's transit gateway routing table so that the traffics * could be routed to kdb network. */ public String getRoutableCIDRSpace() { return this.routableCIDRSpace; } /** *

* The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. After * providing, it will be added to the customer's transit gateway routing table so that the traffics could be routed * to kdb network. *

* * @param routableCIDRSpace * The routing CIDR on behalf of kdb environment. It could be any "/26 range in the 100.64.0.0 CIDR space. * After providing, it will be added to the customer's transit gateway routing table so that the traffics * could be routed to kdb network. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayConfiguration withRoutableCIDRSpace(String routableCIDRSpace) { setRoutableCIDRSpace(routableCIDRSpace); 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 (getTransitGatewayID() != null) sb.append("TransitGatewayID: ").append(getTransitGatewayID()).append(","); if (getRoutableCIDRSpace() != null) sb.append("RoutableCIDRSpace: ").append(getRoutableCIDRSpace()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TransitGatewayConfiguration == false) return false; TransitGatewayConfiguration other = (TransitGatewayConfiguration) obj; if (other.getTransitGatewayID() == null ^ this.getTransitGatewayID() == null) return false; if (other.getTransitGatewayID() != null && other.getTransitGatewayID().equals(this.getTransitGatewayID()) == false) return false; if (other.getRoutableCIDRSpace() == null ^ this.getRoutableCIDRSpace() == null) return false; if (other.getRoutableCIDRSpace() != null && other.getRoutableCIDRSpace().equals(this.getRoutableCIDRSpace()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTransitGatewayID() == null) ? 0 : getTransitGatewayID().hashCode()); hashCode = prime * hashCode + ((getRoutableCIDRSpace() == null) ? 0 : getRoutableCIDRSpace().hashCode()); return hashCode; } @Override public TransitGatewayConfiguration clone() { try { return (TransitGatewayConfiguration) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.finspace.model.transform.TransitGatewayConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }