/* * 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 Connect peer. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class TransitGatewayConnectPeer implements Serializable, Cloneable { /** ** The ID of the Connect attachment. *
*/ private String transitGatewayAttachmentId; /** ** The ID of the Connect peer. *
*/ private String transitGatewayConnectPeerId; /** ** The state of the Connect peer. *
*/ private String state; /** ** The creation time. *
*/ private java.util.Date creationTime; /** ** The Connect peer details. *
*/ private TransitGatewayConnectPeerConfiguration connectPeerConfiguration; /** ** The tags for the Connect peer. *
*/ private com.amazonaws.internal.SdkInternalList* The ID of the Connect attachment. *
* * @param transitGatewayAttachmentId * The ID of the Connect attachment. */ public void setTransitGatewayAttachmentId(String transitGatewayAttachmentId) { this.transitGatewayAttachmentId = transitGatewayAttachmentId; } /** ** The ID of the Connect attachment. *
* * @return The ID of the Connect attachment. */ public String getTransitGatewayAttachmentId() { return this.transitGatewayAttachmentId; } /** ** The ID of the Connect attachment. *
* * @param transitGatewayAttachmentId * The ID of the Connect attachment. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayConnectPeer withTransitGatewayAttachmentId(String transitGatewayAttachmentId) { setTransitGatewayAttachmentId(transitGatewayAttachmentId); return this; } /** ** The ID of the Connect peer. *
* * @param transitGatewayConnectPeerId * The ID of the Connect peer. */ public void setTransitGatewayConnectPeerId(String transitGatewayConnectPeerId) { this.transitGatewayConnectPeerId = transitGatewayConnectPeerId; } /** ** The ID of the Connect peer. *
* * @return The ID of the Connect peer. */ public String getTransitGatewayConnectPeerId() { return this.transitGatewayConnectPeerId; } /** ** The ID of the Connect peer. *
* * @param transitGatewayConnectPeerId * The ID of the Connect peer. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayConnectPeer withTransitGatewayConnectPeerId(String transitGatewayConnectPeerId) { setTransitGatewayConnectPeerId(transitGatewayConnectPeerId); return this; } /** ** The state of the Connect peer. *
* * @param state * The state of the Connect peer. * @see TransitGatewayConnectPeerState */ public void setState(String state) { this.state = state; } /** ** The state of the Connect peer. *
* * @return The state of the Connect peer. * @see TransitGatewayConnectPeerState */ public String getState() { return this.state; } /** ** The state of the Connect peer. *
* * @param state * The state of the Connect peer. * @return Returns a reference to this object so that method calls can be chained together. * @see TransitGatewayConnectPeerState */ public TransitGatewayConnectPeer withState(String state) { setState(state); return this; } /** ** The state of the Connect peer. *
* * @param state * The state of the Connect peer. * @return Returns a reference to this object so that method calls can be chained together. * @see TransitGatewayConnectPeerState */ public TransitGatewayConnectPeer withState(TransitGatewayConnectPeerState state) { this.state = state.toString(); 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 TransitGatewayConnectPeer withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** ** The Connect peer details. *
* * @param connectPeerConfiguration * The Connect peer details. */ public void setConnectPeerConfiguration(TransitGatewayConnectPeerConfiguration connectPeerConfiguration) { this.connectPeerConfiguration = connectPeerConfiguration; } /** ** The Connect peer details. *
* * @return The Connect peer details. */ public TransitGatewayConnectPeerConfiguration getConnectPeerConfiguration() { return this.connectPeerConfiguration; } /** ** The Connect peer details. *
* * @param connectPeerConfiguration * The Connect peer details. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayConnectPeer withConnectPeerConfiguration(TransitGatewayConnectPeerConfiguration connectPeerConfiguration) { setConnectPeerConfiguration(connectPeerConfiguration); return this; } /** ** The tags for the Connect peer. *
* * @return The tags for the Connect peer. */ public java.util.List* The tags for the Connect peer. *
* * @param tags * The tags for the Connect peer. */ public void setTags(java.util.Collection* The tags for the Connect peer. *
** 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 Connect peer. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayConnectPeer withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* The tags for the Connect peer. *
* * @param tags * The tags for the Connect peer. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayConnectPeer withTags(java.util.Collection