Package com.amazonaws.services.ec2.model
Class ClassicLinkDnsSupport
- java.lang.Object
-
- com.amazonaws.services.ec2.model.ClassicLinkDnsSupport
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ClassicLinkDnsSupport extends Object implements Serializable, Cloneable
Describes the ClassicLink DNS support status of a VPC.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClassicLinkDnsSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassicLinkDnsSupportclone()booleanequals(Object obj)BooleangetClassicLinkDnsSupported()Indicates whether ClassicLink DNS support is enabled for the VPC.StringgetVpcId()The ID of the VPC.inthashCode()BooleanisClassicLinkDnsSupported()Indicates whether ClassicLink DNS support is enabled for the VPC.voidsetClassicLinkDnsSupported(Boolean classicLinkDnsSupported)Indicates whether ClassicLink DNS support is enabled for the VPC.voidsetVpcId(String vpcId)The ID of the VPC.StringtoString()Returns a string representation of this object; useful for testing and debugging.ClassicLinkDnsSupportwithClassicLinkDnsSupported(Boolean classicLinkDnsSupported)Indicates whether ClassicLink DNS support is enabled for the VPC.ClassicLinkDnsSupportwithVpcId(String vpcId)The ID of the VPC.
-
-
-
Method Detail
-
setVpcId
public void setVpcId(String vpcId)
The ID of the VPC.
- Parameters:
vpcId- The ID of the VPC.
-
getVpcId
public String getVpcId()
The ID of the VPC.
- Returns:
- The ID of the VPC.
-
withVpcId
public ClassicLinkDnsSupport withVpcId(String vpcId)
The ID of the VPC.
- Parameters:
vpcId- The ID of the VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setClassicLinkDnsSupported
public void setClassicLinkDnsSupported(Boolean classicLinkDnsSupported)
Indicates whether ClassicLink DNS support is enabled for the VPC.
- Parameters:
classicLinkDnsSupported- Indicates whether ClassicLink DNS support is enabled for the VPC.
-
getClassicLinkDnsSupported
public Boolean getClassicLinkDnsSupported()
Indicates whether ClassicLink DNS support is enabled for the VPC.
- Returns:
- Indicates whether ClassicLink DNS support is enabled for the VPC.
-
withClassicLinkDnsSupported
public ClassicLinkDnsSupport withClassicLinkDnsSupported(Boolean classicLinkDnsSupported)
Indicates whether ClassicLink DNS support is enabled for the VPC.
- Parameters:
classicLinkDnsSupported- Indicates whether ClassicLink DNS support is enabled for the VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isClassicLinkDnsSupported
public Boolean isClassicLinkDnsSupported()
Indicates whether ClassicLink DNS support is enabled for the VPC.
- Returns:
- Indicates whether ClassicLink DNS support is enabled for the VPC.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ClassicLinkDnsSupport clone()
-
-