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

com.amazonaws.services.ec2.model.TransitGatewayMulticastDomainAssociations 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 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 the multicast domain associations. *

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

* The ID of the transit gateway multicast domain. *

*/ private String transitGatewayMulticastDomainId; /** *

* The ID of the transit gateway attachment. *

*/ private String transitGatewayAttachmentId; /** *

* The ID of the resource. *

*/ private String resourceId; /** *

* The type of resource, for example a VPC attachment. *

*/ private String resourceType; /** *

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

*/ private String resourceOwnerId; /** *

* The subnets associated with the multicast domain. *

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

* The ID of the transit gateway multicast domain. *

* * @param transitGatewayMulticastDomainId * The ID of the transit gateway multicast domain. */ public void setTransitGatewayMulticastDomainId(String transitGatewayMulticastDomainId) { this.transitGatewayMulticastDomainId = transitGatewayMulticastDomainId; } /** *

* The ID of the transit gateway multicast domain. *

* * @return The ID of the transit gateway multicast domain. */ public String getTransitGatewayMulticastDomainId() { return this.transitGatewayMulticastDomainId; } /** *

* The ID of the transit gateway multicast domain. *

* * @param transitGatewayMulticastDomainId * The ID of the transit gateway multicast domain. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayMulticastDomainAssociations withTransitGatewayMulticastDomainId(String transitGatewayMulticastDomainId) { setTransitGatewayMulticastDomainId(transitGatewayMulticastDomainId); return this; } /** *

* The ID of the transit gateway attachment. *

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

* The ID of the transit gateway attachment. *

* * @return The ID of the transit gateway attachment. */ public String getTransitGatewayAttachmentId() { return this.transitGatewayAttachmentId; } /** *

* The ID of the transit gateway attachment. *

* * @param transitGatewayAttachmentId * The ID of the transit gateway attachment. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayMulticastDomainAssociations withTransitGatewayAttachmentId(String transitGatewayAttachmentId) { setTransitGatewayAttachmentId(transitGatewayAttachmentId); 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 TransitGatewayMulticastDomainAssociations withResourceId(String resourceId) { setResourceId(resourceId); return this; } /** *

* The type of resource, for example a VPC attachment. *

* * @param resourceType * The type of resource, for example a VPC attachment. * @see TransitGatewayAttachmentResourceType */ public void setResourceType(String resourceType) { this.resourceType = resourceType; } /** *

* The type of resource, for example a VPC attachment. *

* * @return The type of resource, for example a VPC attachment. * @see TransitGatewayAttachmentResourceType */ public String getResourceType() { return this.resourceType; } /** *

* The type of resource, for example a VPC attachment. *

* * @param resourceType * The type of resource, for example a VPC attachment. * @return Returns a reference to this object so that method calls can be chained together. * @see TransitGatewayAttachmentResourceType */ public TransitGatewayMulticastDomainAssociations withResourceType(String resourceType) { setResourceType(resourceType); return this; } /** *

* The type of resource, for example a VPC attachment. *

* * @param resourceType * The type of resource, for example a VPC attachment. * @return Returns a reference to this object so that method calls can be chained together. * @see TransitGatewayAttachmentResourceType */ public TransitGatewayMulticastDomainAssociations withResourceType(TransitGatewayAttachmentResourceType resourceType) { this.resourceType = resourceType.toString(); return this; } /** *

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

* * @param resourceOwnerId * The ID of the Amazon Web Services account that owns the resource. */ public void setResourceOwnerId(String resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; } /** *

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

* * @return The ID of the Amazon Web Services account that owns the resource. */ public String getResourceOwnerId() { return this.resourceOwnerId; } /** *

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

* * @param resourceOwnerId * The ID of the Amazon Web Services account that owns the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayMulticastDomainAssociations withResourceOwnerId(String resourceOwnerId) { setResourceOwnerId(resourceOwnerId); return this; } /** *

* The subnets associated with the multicast domain. *

* * @return The subnets associated with the multicast domain. */ public java.util.List getSubnets() { if (subnets == null) { subnets = new com.amazonaws.internal.SdkInternalList(); } return subnets; } /** *

* The subnets associated with the multicast domain. *

* * @param subnets * The subnets associated with the multicast domain. */ public void setSubnets(java.util.Collection subnets) { if (subnets == null) { this.subnets = null; return; } this.subnets = new com.amazonaws.internal.SdkInternalList(subnets); } /** *

* The subnets associated with the multicast domain. *

*

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

* * @param subnets * The subnets associated with the multicast domain. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayMulticastDomainAssociations withSubnets(SubnetAssociation... subnets) { if (this.subnets == null) { setSubnets(new com.amazonaws.internal.SdkInternalList(subnets.length)); } for (SubnetAssociation ele : subnets) { this.subnets.add(ele); } return this; } /** *

* The subnets associated with the multicast domain. *

* * @param subnets * The subnets associated with the multicast domain. * @return Returns a reference to this object so that method calls can be chained together. */ public TransitGatewayMulticastDomainAssociations withSubnets(java.util.Collection subnets) { setSubnets(subnets); 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 (getTransitGatewayMulticastDomainId() != null) sb.append("TransitGatewayMulticastDomainId: ").append(getTransitGatewayMulticastDomainId()).append(","); if (getTransitGatewayAttachmentId() != null) sb.append("TransitGatewayAttachmentId: ").append(getTransitGatewayAttachmentId()).append(","); if (getResourceId() != null) sb.append("ResourceId: ").append(getResourceId()).append(","); if (getResourceType() != null) sb.append("ResourceType: ").append(getResourceType()).append(","); if (getResourceOwnerId() != null) sb.append("ResourceOwnerId: ").append(getResourceOwnerId()).append(","); if (getSubnets() != null) sb.append("Subnets: ").append(getSubnets()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TransitGatewayMulticastDomainAssociations == false) return false; TransitGatewayMulticastDomainAssociations other = (TransitGatewayMulticastDomainAssociations) obj; if (other.getTransitGatewayMulticastDomainId() == null ^ this.getTransitGatewayMulticastDomainId() == null) return false; if (other.getTransitGatewayMulticastDomainId() != null && other.getTransitGatewayMulticastDomainId().equals(this.getTransitGatewayMulticastDomainId()) == false) return false; if (other.getTransitGatewayAttachmentId() == null ^ this.getTransitGatewayAttachmentId() == null) return false; if (other.getTransitGatewayAttachmentId() != null && other.getTransitGatewayAttachmentId().equals(this.getTransitGatewayAttachmentId()) == 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.getResourceType() == null ^ this.getResourceType() == null) return false; if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == 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.getSubnets() == null ^ this.getSubnets() == null) return false; if (other.getSubnets() != null && other.getSubnets().equals(this.getSubnets()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTransitGatewayMulticastDomainId() == null) ? 0 : getTransitGatewayMulticastDomainId().hashCode()); hashCode = prime * hashCode + ((getTransitGatewayAttachmentId() == null) ? 0 : getTransitGatewayAttachmentId().hashCode()); hashCode = prime * hashCode + ((getResourceId() == null) ? 0 : getResourceId().hashCode()); hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode()); hashCode = prime * hashCode + ((getResourceOwnerId() == null) ? 0 : getResourceOwnerId().hashCode()); hashCode = prime * hashCode + ((getSubnets() == null) ? 0 : getSubnets().hashCode()); return hashCode; } @Override public TransitGatewayMulticastDomainAssociations clone() { try { return (TransitGatewayMulticastDomainAssociations) 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