com.amazonaws.services.ec2.model.TransitGatewayMulticastGroup Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2016-2021 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 transit gateway multicast group resources.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class TransitGatewayMulticastGroup implements Serializable, Cloneable {
/**
*
* The IP address assigned to the transit gateway multicast group.
*
*/
private String groupIpAddress;
/**
*
* The ID of the transit gateway attachment.
*
*/
private String transitGatewayAttachmentId;
/**
*
* The ID of the subnet.
*
*/
private String subnetId;
/**
*
* The ID of the resource.
*
*/
private String resourceId;
/**
*
* The type of resource, for example a VPC attachment.
*
*/
private String resourceType;
/**
*
* The ID of the AWS account that owns the transit gateway multicast domain group resource.
*
*/
private String resourceOwnerId;
/**
*
* The ID of the transit gateway attachment.
*
*/
private String networkInterfaceId;
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*/
private Boolean groupMember;
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*/
private Boolean groupSource;
/**
*
* The member type (for example, static
).
*
*/
private String memberType;
/**
*
* The source type.
*
*/
private String sourceType;
/**
*
* The IP address assigned to the transit gateway multicast group.
*
*
* @param groupIpAddress
* The IP address assigned to the transit gateway multicast group.
*/
public void setGroupIpAddress(String groupIpAddress) {
this.groupIpAddress = groupIpAddress;
}
/**
*
* The IP address assigned to the transit gateway multicast group.
*
*
* @return The IP address assigned to the transit gateway multicast group.
*/
public String getGroupIpAddress() {
return this.groupIpAddress;
}
/**
*
* The IP address assigned to the transit gateway multicast group.
*
*
* @param groupIpAddress
* The IP address assigned to the transit gateway multicast group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayMulticastGroup withGroupIpAddress(String groupIpAddress) {
setGroupIpAddress(groupIpAddress);
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 TransitGatewayMulticastGroup withTransitGatewayAttachmentId(String transitGatewayAttachmentId) {
setTransitGatewayAttachmentId(transitGatewayAttachmentId);
return this;
}
/**
*
* The ID of the subnet.
*
*
* @param subnetId
* The ID of the subnet.
*/
public void setSubnetId(String subnetId) {
this.subnetId = subnetId;
}
/**
*
* The ID of the subnet.
*
*
* @return The ID of the subnet.
*/
public String getSubnetId() {
return this.subnetId;
}
/**
*
* The ID of the subnet.
*
*
* @param subnetId
* The ID of the subnet.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayMulticastGroup withSubnetId(String subnetId) {
setSubnetId(subnetId);
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 TransitGatewayMulticastGroup 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 TransitGatewayMulticastGroup 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 TransitGatewayMulticastGroup withResourceType(TransitGatewayAttachmentResourceType resourceType) {
this.resourceType = resourceType.toString();
return this;
}
/**
*
* The ID of the AWS account that owns the transit gateway multicast domain group resource.
*
*
* @param resourceOwnerId
* The ID of the AWS account that owns the transit gateway multicast domain group resource.
*/
public void setResourceOwnerId(String resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
}
/**
*
* The ID of the AWS account that owns the transit gateway multicast domain group resource.
*
*
* @return The ID of the AWS account that owns the transit gateway multicast domain group resource.
*/
public String getResourceOwnerId() {
return this.resourceOwnerId;
}
/**
*
* The ID of the AWS account that owns the transit gateway multicast domain group resource.
*
*
* @param resourceOwnerId
* The ID of the AWS account that owns the transit gateway multicast domain group resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayMulticastGroup withResourceOwnerId(String resourceOwnerId) {
setResourceOwnerId(resourceOwnerId);
return this;
}
/**
*
* The ID of the transit gateway attachment.
*
*
* @param networkInterfaceId
* The ID of the transit gateway attachment.
*/
public void setNetworkInterfaceId(String networkInterfaceId) {
this.networkInterfaceId = networkInterfaceId;
}
/**
*
* The ID of the transit gateway attachment.
*
*
* @return The ID of the transit gateway attachment.
*/
public String getNetworkInterfaceId() {
return this.networkInterfaceId;
}
/**
*
* The ID of the transit gateway attachment.
*
*
* @param networkInterfaceId
* The ID of the transit gateway attachment.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayMulticastGroup withNetworkInterfaceId(String networkInterfaceId) {
setNetworkInterfaceId(networkInterfaceId);
return this;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @param groupMember
* Indicates that the resource is a transit gateway multicast group member.
*/
public void setGroupMember(Boolean groupMember) {
this.groupMember = groupMember;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @return Indicates that the resource is a transit gateway multicast group member.
*/
public Boolean getGroupMember() {
return this.groupMember;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @param groupMember
* Indicates that the resource is a transit gateway multicast group member.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayMulticastGroup withGroupMember(Boolean groupMember) {
setGroupMember(groupMember);
return this;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @return Indicates that the resource is a transit gateway multicast group member.
*/
public Boolean isGroupMember() {
return this.groupMember;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @param groupSource
* Indicates that the resource is a transit gateway multicast group member.
*/
public void setGroupSource(Boolean groupSource) {
this.groupSource = groupSource;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @return Indicates that the resource is a transit gateway multicast group member.
*/
public Boolean getGroupSource() {
return this.groupSource;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @param groupSource
* Indicates that the resource is a transit gateway multicast group member.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TransitGatewayMulticastGroup withGroupSource(Boolean groupSource) {
setGroupSource(groupSource);
return this;
}
/**
*
* Indicates that the resource is a transit gateway multicast group member.
*
*
* @return Indicates that the resource is a transit gateway multicast group member.
*/
public Boolean isGroupSource() {
return this.groupSource;
}
/**
*
* The member type (for example, static
).
*
*
* @param memberType
* The member type (for example, static
).
* @see MembershipType
*/
public void setMemberType(String memberType) {
this.memberType = memberType;
}
/**
*
* The member type (for example, static
).
*
*
* @return The member type (for example, static
).
* @see MembershipType
*/
public String getMemberType() {
return this.memberType;
}
/**
*
* The member type (for example, static
).
*
*
* @param memberType
* The member type (for example, static
).
* @return Returns a reference to this object so that method calls can be chained together.
* @see MembershipType
*/
public TransitGatewayMulticastGroup withMemberType(String memberType) {
setMemberType(memberType);
return this;
}
/**
*
* The member type (for example, static
).
*
*
* @param memberType
* The member type (for example, static
).
* @return Returns a reference to this object so that method calls can be chained together.
* @see MembershipType
*/
public TransitGatewayMulticastGroup withMemberType(MembershipType memberType) {
this.memberType = memberType.toString();
return this;
}
/**
*
* The source type.
*
*
* @param sourceType
* The source type.
* @see MembershipType
*/
public void setSourceType(String sourceType) {
this.sourceType = sourceType;
}
/**
*
* The source type.
*
*
* @return The source type.
* @see MembershipType
*/
public String getSourceType() {
return this.sourceType;
}
/**
*
* The source type.
*
*
* @param sourceType
* The source type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see MembershipType
*/
public TransitGatewayMulticastGroup withSourceType(String sourceType) {
setSourceType(sourceType);
return this;
}
/**
*
* The source type.
*
*
* @param sourceType
* The source type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see MembershipType
*/
public TransitGatewayMulticastGroup withSourceType(MembershipType sourceType) {
this.sourceType = sourceType.toString();
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 (getGroupIpAddress() != null)
sb.append("GroupIpAddress: ").append(getGroupIpAddress()).append(",");
if (getTransitGatewayAttachmentId() != null)
sb.append("TransitGatewayAttachmentId: ").append(getTransitGatewayAttachmentId()).append(",");
if (getSubnetId() != null)
sb.append("SubnetId: ").append(getSubnetId()).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 (getNetworkInterfaceId() != null)
sb.append("NetworkInterfaceId: ").append(getNetworkInterfaceId()).append(",");
if (getGroupMember() != null)
sb.append("GroupMember: ").append(getGroupMember()).append(",");
if (getGroupSource() != null)
sb.append("GroupSource: ").append(getGroupSource()).append(",");
if (getMemberType() != null)
sb.append("MemberType: ").append(getMemberType()).append(",");
if (getSourceType() != null)
sb.append("SourceType: ").append(getSourceType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof TransitGatewayMulticastGroup == false)
return false;
TransitGatewayMulticastGroup other = (TransitGatewayMulticastGroup) obj;
if (other.getGroupIpAddress() == null ^ this.getGroupIpAddress() == null)
return false;
if (other.getGroupIpAddress() != null && other.getGroupIpAddress().equals(this.getGroupIpAddress()) == 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.getSubnetId() == null ^ this.getSubnetId() == null)
return false;
if (other.getSubnetId() != null && other.getSubnetId().equals(this.getSubnetId()) == 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.getNetworkInterfaceId() == null ^ this.getNetworkInterfaceId() == null)
return false;
if (other.getNetworkInterfaceId() != null && other.getNetworkInterfaceId().equals(this.getNetworkInterfaceId()) == false)
return false;
if (other.getGroupMember() == null ^ this.getGroupMember() == null)
return false;
if (other.getGroupMember() != null && other.getGroupMember().equals(this.getGroupMember()) == false)
return false;
if (other.getGroupSource() == null ^ this.getGroupSource() == null)
return false;
if (other.getGroupSource() != null && other.getGroupSource().equals(this.getGroupSource()) == false)
return false;
if (other.getMemberType() == null ^ this.getMemberType() == null)
return false;
if (other.getMemberType() != null && other.getMemberType().equals(this.getMemberType()) == false)
return false;
if (other.getSourceType() == null ^ this.getSourceType() == null)
return false;
if (other.getSourceType() != null && other.getSourceType().equals(this.getSourceType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getGroupIpAddress() == null) ? 0 : getGroupIpAddress().hashCode());
hashCode = prime * hashCode + ((getTransitGatewayAttachmentId() == null) ? 0 : getTransitGatewayAttachmentId().hashCode());
hashCode = prime * hashCode + ((getSubnetId() == null) ? 0 : getSubnetId().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 + ((getNetworkInterfaceId() == null) ? 0 : getNetworkInterfaceId().hashCode());
hashCode = prime * hashCode + ((getGroupMember() == null) ? 0 : getGroupMember().hashCode());
hashCode = prime * hashCode + ((getGroupSource() == null) ? 0 : getGroupSource().hashCode());
hashCode = prime * hashCode + ((getMemberType() == null) ? 0 : getMemberType().hashCode());
hashCode = prime * hashCode + ((getSourceType() == null) ? 0 : getSourceType().hashCode());
return hashCode;
}
@Override
public TransitGatewayMulticastGroup clone() {
try {
return (TransitGatewayMulticastGroup) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}