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 ClassicLinkDnsSupport
clone()
boolean
equals(Object obj)
Boolean
getClassicLinkDnsSupported()
Indicates whether ClassicLink DNS support is enabled for the VPC.String
getVpcId()
The ID of the VPC.int
hashCode()
Boolean
isClassicLinkDnsSupported()
Indicates whether ClassicLink DNS support is enabled for the VPC.void
setClassicLinkDnsSupported(Boolean classicLinkDnsSupported)
Indicates whether ClassicLink DNS support is enabled for the VPC.void
setVpcId(String vpcId)
The ID of the VPC.String
toString()
Returns a string representation of this object; useful for testing and debugging.ClassicLinkDnsSupport
withClassicLinkDnsSupported(Boolean classicLinkDnsSupported)
Indicates whether ClassicLink DNS support is enabled for the VPC.ClassicLinkDnsSupport
withVpcId(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ClassicLinkDnsSupport clone()
-
-