/* * 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 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* 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* The tags for the transit gateway. *
* * @param tags * The tags for the transit gateway. */ public void setTags(java.util.Collection* 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* 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