/* * 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* 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* The subnets associated with the multicast domain. *
* * @param subnets * The subnets associated with the multicast domain. */ public void setSubnets(java.util.Collection* 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* 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