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

com.amazonaws.services.ec2.model.TransitGateway 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 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 a transit gateway. *

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

* The ID of the transit gateway. *

*/ private String transitGatewayId; /** *

* The Amazon Resource Name (ARN) of the transit gateway. *

*/ private String transitGatewayArn; /** *

* The state of the transit gateway. *

*/ private String state; /** *

* The ID of the Amazon Web Services account that owns the transit gateway. *

*/ private String ownerId; /** *

* The description of the transit gateway. *

*/ private String description; /** *

* The creation time. *

*/ private java.util.Date creationTime; /** *

* The transit gateway options. *

*/ private TransitGatewayOptions options; /** *

* The tags for the transit gateway. *

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

* The ID of the transit gateway. *

* * @param transitGatewayId * The ID of the transit gateway. */ public void setTransitGatewayId(String transitGatewayId) { this.transitGatewayId = transitGatewayId; } /** *

* The ID of the transit gateway. *

* * @return The ID of the transit gateway. */ public String getTransitGatewayId() { return this.transitGatewayId; } /** *

* The ID of the transit gateway. *

* * @param transitGatewayId * The ID of the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withTransitGatewayId(String transitGatewayId) { setTransitGatewayId(transitGatewayId); return this; } /** *

* The Amazon Resource Name (ARN) of the transit gateway. *

* * @param transitGatewayArn * The Amazon Resource Name (ARN) of the transit gateway. */ public void setTransitGatewayArn(String transitGatewayArn) { this.transitGatewayArn = transitGatewayArn; } /** *

* The Amazon Resource Name (ARN) of the transit gateway. *

* * @return The Amazon Resource Name (ARN) of the transit gateway. */ public String getTransitGatewayArn() { return this.transitGatewayArn; } /** *

* The Amazon Resource Name (ARN) of the transit gateway. *

* * @param transitGatewayArn * The Amazon Resource Name (ARN) of the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withTransitGatewayArn(String transitGatewayArn) { setTransitGatewayArn(transitGatewayArn); return this; } /** *

* The state of the transit gateway. *

* * @param state * The state of the transit gateway. * @see TransitGatewayState */ public void setState(String state) { this.state = state; } /** *

* The state of the transit gateway. *

* * @return The state of the transit gateway. * @see TransitGatewayState */ public String getState() { return this.state; } /** *

* The state of the transit gateway. *

* * @param state * The state of the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. * @see TransitGatewayState */ public TransitGateway withState(String state) { setState(state); return this; } /** *

* The state of the transit gateway. *

* * @param state * The state of the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. * @see TransitGatewayState */ public TransitGateway withState(TransitGatewayState state) { this.state = state.toString(); return this; } /** *

* The ID of the Amazon Web Services account that owns the transit gateway. *

* * @param ownerId * The ID of the Amazon Web Services account that owns the transit gateway. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* The ID of the Amazon Web Services account that owns the transit gateway. *

* * @return The ID of the Amazon Web Services account that owns the transit gateway. */ public String getOwnerId() { return this.ownerId; } /** *

* The ID of the Amazon Web Services account that owns the transit gateway. *

* * @param ownerId * The ID of the Amazon Web Services account that owns the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** *

* The description of the transit gateway. *

* * @param description * The description of the transit gateway. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the transit gateway. *

* * @return The description of the transit gateway. */ public String getDescription() { return this.description; } /** *

* The description of the transit gateway. *

* * @param description * The description of the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withDescription(String description) { setDescription(description); return this; } /** *

* The creation time. *

* * @param creationTime * The creation time. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* The creation time. *

* * @return The creation time. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* The creation time. *

* * @param creationTime * The creation time. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* The transit gateway options. *

* * @param options * The transit gateway options. */ public void setOptions(TransitGatewayOptions options) { this.options = options; } /** *

* The transit gateway options. *

* * @return The transit gateway options. */ public TransitGatewayOptions getOptions() { return this.options; } /** *

* The transit gateway options. *

* * @param options * The transit gateway options. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withOptions(TransitGatewayOptions options) { setOptions(options); return this; } /** *

* The tags for the transit gateway. *

* * @return The tags for the transit gateway. */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

* The tags for the transit gateway. *

* * @param tags * The tags for the transit gateway. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

* The tags for the transit gateway. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * The tags for the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* The tags for the transit gateway. *

* * @param tags * The tags for the transit gateway. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGateway withTags(java.util.Collection tags) { setTags(tags); 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 (getTransitGatewayArn() != null) sb.append("TransitGatewayArn: ").append(getTransitGatewayArn()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getOwnerId() != null) sb.append("OwnerId: ").append(getOwnerId()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getOptions() != null) sb.append("Options: ").append(getOptions()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TransitGateway == false) return false; TransitGateway other = (TransitGateway) obj; if (other.getTransitGatewayId() == null ^ this.getTransitGatewayId() == null) return false; if (other.getTransitGatewayId() != null && other.getTransitGatewayId().equals(this.getTransitGatewayId()) == false) return false; if (other.getTransitGatewayArn() == null ^ this.getTransitGatewayArn() == null) return false; if (other.getTransitGatewayArn() != null && other.getTransitGatewayArn().equals(this.getTransitGatewayArn()) == false) return false; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getOptions() == null ^ this.getOptions() == null) return false; if (other.getOptions() != null && other.getOptions().equals(this.getOptions()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == 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 + ((getTransitGatewayArn() == null) ? 0 : getTransitGatewayArn().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getOptions() == null) ? 0 : getOptions().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public TransitGateway clone() { try { return (TransitGateway) 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