/* * 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 options for a transit gateway multicast domain. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class TransitGatewayMulticastDomainOptions implements Serializable, Cloneable { /** ** Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. *
*/ private String igmpv2Support; /** ** Indicates whether support for statically configuring transit gateway multicast group sources is turned on. *
*/ private String staticSourcesSupport; /** ** Indicates whether to automatically cross-account subnet associations that are associated with the transit gateway * multicast domain. *
*/ private String autoAcceptSharedAssociations; /** ** Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. *
* * @param igmpv2Support * Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. * @see Igmpv2SupportValue */ public void setIgmpv2Support(String igmpv2Support) { this.igmpv2Support = igmpv2Support; } /** ** Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. *
* * @return Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit * gateway multicast domain. * @see Igmpv2SupportValue */ public String getIgmpv2Support() { return this.igmpv2Support; } /** ** Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. *
* * @param igmpv2Support * Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. * @return Returns a reference to this object so that method calls can be chained together. * @see Igmpv2SupportValue */ public TransitGatewayMulticastDomainOptions withIgmpv2Support(String igmpv2Support) { setIgmpv2Support(igmpv2Support); return this; } /** ** Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. *
* * @param igmpv2Support * Indicates whether Internet Group Management Protocol (IGMP) version 2 is turned on for the transit gateway * multicast domain. * @return Returns a reference to this object so that method calls can be chained together. * @see Igmpv2SupportValue */ public TransitGatewayMulticastDomainOptions withIgmpv2Support(Igmpv2SupportValue igmpv2Support) { this.igmpv2Support = igmpv2Support.toString(); return this; } /** ** Indicates whether support for statically configuring transit gateway multicast group sources is turned on. *
* * @param staticSourcesSupport * Indicates whether support for statically configuring transit gateway multicast group sources is turned on. * @see StaticSourcesSupportValue */ public void setStaticSourcesSupport(String staticSourcesSupport) { this.staticSourcesSupport = staticSourcesSupport; } /** ** Indicates whether support for statically configuring transit gateway multicast group sources is turned on. *
* * @return Indicates whether support for statically configuring transit gateway multicast group sources is turned * on. * @see StaticSourcesSupportValue */ public String getStaticSourcesSupport() { return this.staticSourcesSupport; } /** ** Indicates whether support for statically configuring transit gateway multicast group sources is turned on. *
* * @param staticSourcesSupport * Indicates whether support for statically configuring transit gateway multicast group sources is turned on. * @return Returns a reference to this object so that method calls can be chained together. * @see StaticSourcesSupportValue */ public TransitGatewayMulticastDomainOptions withStaticSourcesSupport(String staticSourcesSupport) { setStaticSourcesSupport(staticSourcesSupport); return this; } /** ** Indicates whether support for statically configuring transit gateway multicast group sources is turned on. *
* * @param staticSourcesSupport * Indicates whether support for statically configuring transit gateway multicast group sources is turned on. * @return Returns a reference to this object so that method calls can be chained together. * @see StaticSourcesSupportValue */ public TransitGatewayMulticastDomainOptions withStaticSourcesSupport(StaticSourcesSupportValue staticSourcesSupport) { this.staticSourcesSupport = staticSourcesSupport.toString(); return this; } /** ** Indicates whether to automatically cross-account subnet associations that are associated with the transit gateway * multicast domain. *
* * @param autoAcceptSharedAssociations * Indicates whether to automatically cross-account subnet associations that are associated with the transit * gateway multicast domain. * @see AutoAcceptSharedAssociationsValue */ public void setAutoAcceptSharedAssociations(String autoAcceptSharedAssociations) { this.autoAcceptSharedAssociations = autoAcceptSharedAssociations; } /** ** Indicates whether to automatically cross-account subnet associations that are associated with the transit gateway * multicast domain. *
* * @return Indicates whether to automatically cross-account subnet associations that are associated with the transit * gateway multicast domain. * @see AutoAcceptSharedAssociationsValue */ public String getAutoAcceptSharedAssociations() { return this.autoAcceptSharedAssociations; } /** ** Indicates whether to automatically cross-account subnet associations that are associated with the transit gateway * multicast domain. *
* * @param autoAcceptSharedAssociations * Indicates whether to automatically cross-account subnet associations that are associated with the transit * gateway multicast domain. * @return Returns a reference to this object so that method calls can be chained together. * @see AutoAcceptSharedAssociationsValue */ public TransitGatewayMulticastDomainOptions withAutoAcceptSharedAssociations(String autoAcceptSharedAssociations) { setAutoAcceptSharedAssociations(autoAcceptSharedAssociations); return this; } /** ** Indicates whether to automatically cross-account subnet associations that are associated with the transit gateway * multicast domain. *
* * @param autoAcceptSharedAssociations * Indicates whether to automatically cross-account subnet associations that are associated with the transit * gateway multicast domain. * @return Returns a reference to this object so that method calls can be chained together. * @see AutoAcceptSharedAssociationsValue */ public TransitGatewayMulticastDomainOptions withAutoAcceptSharedAssociations(AutoAcceptSharedAssociationsValue autoAcceptSharedAssociations) { this.autoAcceptSharedAssociations = autoAcceptSharedAssociations.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 (getIgmpv2Support() != null) sb.append("Igmpv2Support: ").append(getIgmpv2Support()).append(","); if (getStaticSourcesSupport() != null) sb.append("StaticSourcesSupport: ").append(getStaticSourcesSupport()).append(","); if (getAutoAcceptSharedAssociations() != null) sb.append("AutoAcceptSharedAssociations: ").append(getAutoAcceptSharedAssociations()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TransitGatewayMulticastDomainOptions == false) return false; TransitGatewayMulticastDomainOptions other = (TransitGatewayMulticastDomainOptions) obj; if (other.getIgmpv2Support() == null ^ this.getIgmpv2Support() == null) return false; if (other.getIgmpv2Support() != null && other.getIgmpv2Support().equals(this.getIgmpv2Support()) == false) return false; if (other.getStaticSourcesSupport() == null ^ this.getStaticSourcesSupport() == null) return false; if (other.getStaticSourcesSupport() != null && other.getStaticSourcesSupport().equals(this.getStaticSourcesSupport()) == false) return false; if (other.getAutoAcceptSharedAssociations() == null ^ this.getAutoAcceptSharedAssociations() == null) return false; if (other.getAutoAcceptSharedAssociations() != null && other.getAutoAcceptSharedAssociations().equals(this.getAutoAcceptSharedAssociations()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getIgmpv2Support() == null) ? 0 : getIgmpv2Support().hashCode()); hashCode = prime * hashCode + ((getStaticSourcesSupport() == null) ? 0 : getStaticSourcesSupport().hashCode()); hashCode = prime * hashCode + ((getAutoAcceptSharedAssociations() == null) ? 0 : getAutoAcceptSharedAssociations().hashCode()); return hashCode; } @Override public TransitGatewayMulticastDomainOptions clone() { try { return (TransitGatewayMulticastDomainOptions) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }