com.amazonaws.services.ec2.model.TransitGatewayAttachment Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2014-2019 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 an attachment between a resource and a transit gateway.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class TransitGatewayAttachment implements Serializable, Cloneable {
/**
*
* The ID of the attachment.
*
*/
private String transitGatewayAttachmentId;
/**
*
* The ID of the transit gateway.
*
*/
private String transitGatewayId;
/**
*
* The ID of the AWS account that owns the transit gateway.
*
*/
private String transitGatewayOwnerId;
/**
*
* The ID of the AWS account that owns the resource.
*
*/
private String resourceOwnerId;
/**
*
* The resource type.
*
*/
private String resourceType;
/**
*
* The ID of the resource.
*
*/
private String resourceId;
/**
*
* The attachment state.
*
*/
private String state;
/**
*
* The association.
*
*/
private TransitGatewayAttachmentAssociation association;
/**
*
* The creation time.
*
*/
private java.util.Date creationTime;
/**
*
* The tags for the attachment.
*
*/
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* The ID of the attachment.
*
*
* @param transitGatewayAttachmentId
* The ID of the attachment.
*/
public void setTransitGatewayAttachmentId(String transitGatewayAttachmentId) {
this.transitGatewayAttachmentId = transitGatewayAttachmentId;
}
/**
*
* The ID of the attachment.
*
*
* @return The ID of the attachment.
*/
public String getTransitGatewayAttachmentId() {
return this.transitGatewayAttachmentId;
}
/**
*
* The ID of the attachment.
*
*
* @param transitGatewayAttachmentId
* The ID of the attachment.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayAttachment withTransitGatewayAttachmentId(String transitGatewayAttachmentId) {
setTransitGatewayAttachmentId(transitGatewayAttachmentId);
return this;
}
/**
*
* 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 TransitGatewayAttachment withTransitGatewayId(String transitGatewayId) {
setTransitGatewayId(transitGatewayId);
return this;
}
/**
*
* The ID of the AWS account that owns the transit gateway.
*
*
* @param transitGatewayOwnerId
* The ID of the AWS account that owns the transit gateway.
*/
public void setTransitGatewayOwnerId(String transitGatewayOwnerId) {
this.transitGatewayOwnerId = transitGatewayOwnerId;
}
/**
*
* The ID of the AWS account that owns the transit gateway.
*
*
* @return The ID of the AWS account that owns the transit gateway.
*/
public String getTransitGatewayOwnerId() {
return this.transitGatewayOwnerId;
}
/**
*
* The ID of the AWS account that owns the transit gateway.
*
*
* @param transitGatewayOwnerId
* The ID of the AWS account that owns the transit gateway.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayAttachment withTransitGatewayOwnerId(String transitGatewayOwnerId) {
setTransitGatewayOwnerId(transitGatewayOwnerId);
return this;
}
/**
*
* The ID of the AWS account that owns the resource.
*
*
* @param resourceOwnerId
* The ID of the AWS account that owns the resource.
*/
public void setResourceOwnerId(String resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
}
/**
*
* The ID of the AWS account that owns the resource.
*
*
* @return The ID of the AWS account that owns the resource.
*/
public String getResourceOwnerId() {
return this.resourceOwnerId;
}
/**
*
* The ID of the AWS account that owns the resource.
*
*
* @param resourceOwnerId
* The ID of the AWS account that owns the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayAttachment withResourceOwnerId(String resourceOwnerId) {
setResourceOwnerId(resourceOwnerId);
return this;
}
/**
*
* The resource type.
*
*
* @param resourceType
* The resource type.
* @see TransitGatewayAttachmentResourceType
*/
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
/**
*
* The resource type.
*
*
* @return The resource type.
* @see TransitGatewayAttachmentResourceType
*/
public String getResourceType() {
return this.resourceType;
}
/**
*
* The resource type.
*
*
* @param resourceType
* The resource type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TransitGatewayAttachmentResourceType
*/
public TransitGatewayAttachment withResourceType(String resourceType) {
setResourceType(resourceType);
return this;
}
/**
*
* The resource type.
*
*
* @param resourceType
* The resource type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TransitGatewayAttachmentResourceType
*/
public TransitGatewayAttachment withResourceType(TransitGatewayAttachmentResourceType resourceType) {
this.resourceType = resourceType.toString();
return this;
}
/**
*
* The ID of the resource.
*
*
* @param resourceId
* The ID of the resource.
*/
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
/**
*
* The ID of the resource.
*
*
* @return The ID of the resource.
*/
public String getResourceId() {
return this.resourceId;
}
/**
*
* The ID of the resource.
*
*
* @param resourceId
* The ID of the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayAttachment withResourceId(String resourceId) {
setResourceId(resourceId);
return this;
}
/**
*
* The attachment state.
*
*
* @param state
* The attachment state.
* @see TransitGatewayAttachmentState
*/
public void setState(String state) {
this.state = state;
}
/**
*
* The attachment state.
*
*
* @return The attachment state.
* @see TransitGatewayAttachmentState
*/
public String getState() {
return this.state;
}
/**
*
* The attachment state.
*
*
* @param state
* The attachment state.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TransitGatewayAttachmentState
*/
public TransitGatewayAttachment withState(String state) {
setState(state);
return this;
}
/**
*
* The attachment state.
*
*
* @param state
* The attachment state.
* @return Returns a reference to this object so that method calls can be chained together.
* @see TransitGatewayAttachmentState
*/
public TransitGatewayAttachment withState(TransitGatewayAttachmentState state) {
this.state = state.toString();
return this;
}
/**
*
* The association.
*
*
* @param association
* The association.
*/
public void setAssociation(TransitGatewayAttachmentAssociation association) {
this.association = association;
}
/**
*
* The association.
*
*
* @return The association.
*/
public TransitGatewayAttachmentAssociation getAssociation() {
return this.association;
}
/**
*
* The association.
*
*
* @param association
* The association.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayAttachment withAssociation(TransitGatewayAttachmentAssociation association) {
setAssociation(association);
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 TransitGatewayAttachment withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* The tags for the attachment.
*
*
* @return The tags for the attachment.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalList();
}
return tags;
}
/**
*
* The tags for the attachment.
*
*
* @param tags
* The tags for the attachment.
*/
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 attachment.
*
*
* 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 attachment.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayAttachment 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 attachment.
*
*
* @param tags
* The tags for the attachment.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayAttachment 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 (getTransitGatewayAttachmentId() != null)
sb.append("TransitGatewayAttachmentId: ").append(getTransitGatewayAttachmentId()).append(",");
if (getTransitGatewayId() != null)
sb.append("TransitGatewayId: ").append(getTransitGatewayId()).append(",");
if (getTransitGatewayOwnerId() != null)
sb.append("TransitGatewayOwnerId: ").append(getTransitGatewayOwnerId()).append(",");
if (getResourceOwnerId() != null)
sb.append("ResourceOwnerId: ").append(getResourceOwnerId()).append(",");
if (getResourceType() != null)
sb.append("ResourceType: ").append(getResourceType()).append(",");
if (getResourceId() != null)
sb.append("ResourceId: ").append(getResourceId()).append(",");
if (getState() != null)
sb.append("State: ").append(getState()).append(",");
if (getAssociation() != null)
sb.append("Association: ").append(getAssociation()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).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 TransitGatewayAttachment == false)
return false;
TransitGatewayAttachment other = (TransitGatewayAttachment) obj;
if (other.getTransitGatewayAttachmentId() == null ^ this.getTransitGatewayAttachmentId() == null)
return false;
if (other.getTransitGatewayAttachmentId() != null && other.getTransitGatewayAttachmentId().equals(this.getTransitGatewayAttachmentId()) == false)
return false;
if (other.getTransitGatewayId() == null ^ this.getTransitGatewayId() == null)
return false;
if (other.getTransitGatewayId() != null && other.getTransitGatewayId().equals(this.getTransitGatewayId()) == false)
return false;
if (other.getTransitGatewayOwnerId() == null ^ this.getTransitGatewayOwnerId() == null)
return false;
if (other.getTransitGatewayOwnerId() != null && other.getTransitGatewayOwnerId().equals(this.getTransitGatewayOwnerId()) == false)
return false;
if (other.getResourceOwnerId() == null ^ this.getResourceOwnerId() == null)
return false;
if (other.getResourceOwnerId() != null && other.getResourceOwnerId().equals(this.getResourceOwnerId()) == false)
return false;
if (other.getResourceType() == null ^ this.getResourceType() == null)
return false;
if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false)
return false;
if (other.getResourceId() == null ^ this.getResourceId() == null)
return false;
if (other.getResourceId() != null && other.getResourceId().equals(this.getResourceId()) == 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.getAssociation() == null ^ this.getAssociation() == null)
return false;
if (other.getAssociation() != null && other.getAssociation().equals(this.getAssociation()) == 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.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 + ((getTransitGatewayAttachmentId() == null) ? 0 : getTransitGatewayAttachmentId().hashCode());
hashCode = prime * hashCode + ((getTransitGatewayId() == null) ? 0 : getTransitGatewayId().hashCode());
hashCode = prime * hashCode + ((getTransitGatewayOwnerId() == null) ? 0 : getTransitGatewayOwnerId().hashCode());
hashCode = prime * hashCode + ((getResourceOwnerId() == null) ? 0 : getResourceOwnerId().hashCode());
hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode());
hashCode = prime * hashCode + ((getResourceId() == null) ? 0 : getResourceId().hashCode());
hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode());
hashCode = prime * hashCode + ((getAssociation() == null) ? 0 : getAssociation().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public TransitGatewayAttachment clone() {
try {
return (TransitGatewayAttachment) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}