Package com.amazonaws.services.ec2.model
Class DescribeVpcClassicLinkDnsSupportResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.DescribeVpcClassicLinkDnsSupportResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeVpcClassicLinkDnsSupportResult extends Object implements Serializable, Cloneable
Contains the output of DescribeVpcClassicLinkDnsSupport.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeVpcClassicLinkDnsSupportResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeVpcClassicLinkDnsSupportResult
clone()
boolean
equals(Object obj)
String
getNextToken()
The token to use when requesting the next set of items.List<ClassicLinkDnsSupport>
getVpcs()
Information about the ClassicLink DNS support status of the VPCs.int
hashCode()
void
setNextToken(String nextToken)
The token to use when requesting the next set of items.void
setVpcs(Collection<ClassicLinkDnsSupport> vpcs)
Information about the ClassicLink DNS support status of the VPCs.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeVpcClassicLinkDnsSupportResult
withNextToken(String nextToken)
The token to use when requesting the next set of items.DescribeVpcClassicLinkDnsSupportResult
withVpcs(ClassicLinkDnsSupport... vpcs)
Information about the ClassicLink DNS support status of the VPCs.DescribeVpcClassicLinkDnsSupportResult
withVpcs(Collection<ClassicLinkDnsSupport> vpcs)
Information about the ClassicLink DNS support status of the VPCs.
-
-
-
Method Detail
-
getVpcs
public List<ClassicLinkDnsSupport> getVpcs()
Information about the ClassicLink DNS support status of the VPCs.
- Returns:
- Information about the ClassicLink DNS support status of the VPCs.
-
setVpcs
public void setVpcs(Collection<ClassicLinkDnsSupport> vpcs)
Information about the ClassicLink DNS support status of the VPCs.
- Parameters:
vpcs
- Information about the ClassicLink DNS support status of the VPCs.
-
withVpcs
public DescribeVpcClassicLinkDnsSupportResult withVpcs(ClassicLinkDnsSupport... vpcs)
Information about the ClassicLink DNS support status of the VPCs.
NOTE: This method appends the values to the existing list (if any). Use
setVpcs(java.util.Collection)
orwithVpcs(java.util.Collection)
if you want to override the existing values.- Parameters:
vpcs
- Information about the ClassicLink DNS support status of the VPCs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withVpcs
public DescribeVpcClassicLinkDnsSupportResult withVpcs(Collection<ClassicLinkDnsSupport> vpcs)
Information about the ClassicLink DNS support status of the VPCs.
- Parameters:
vpcs
- Information about the ClassicLink DNS support status of the VPCs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
The token to use when requesting the next set of items.
- Parameters:
nextToken
- The token to use when requesting the next set of items.
-
getNextToken
public String getNextToken()
The token to use when requesting the next set of items.
- Returns:
- The token to use when requesting the next set of items.
-
withNextToken
public DescribeVpcClassicLinkDnsSupportResult withNextToken(String nextToken)
The token to use when requesting the next set of items.
- Parameters:
nextToken
- The token to use when requesting the next set of items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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 DescribeVpcClassicLinkDnsSupportResult clone()
-
-