Package com.amazonaws.services.ec2.model
Class DescribeSubnetsResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.DescribeSubnetsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeSubnetsResult extends Object implements Serializable, Cloneable
Contains the output of DescribeSubnets.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeSubnetsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeSubnetsResultclone()booleanequals(Object obj)List<Subnet>getSubnets()Information about one or more subnets.inthashCode()voidsetSubnets(Collection<Subnet> subnets)Information about one or more subnets.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeSubnetsResultwithSubnets(Subnet... subnets)Information about one or more subnets.DescribeSubnetsResultwithSubnets(Collection<Subnet> subnets)Information about one or more subnets.
-
-
-
Method Detail
-
getSubnets
public List<Subnet> getSubnets()
Information about one or more subnets.
- Returns:
- Information about one or more subnets.
-
setSubnets
public void setSubnets(Collection<Subnet> subnets)
Information about one or more subnets.
- Parameters:
subnets- Information about one or more subnets.
-
withSubnets
public DescribeSubnetsResult withSubnets(Subnet... subnets)
Information about one or more subnets.
NOTE: This method appends the values to the existing list (if any). Use
setSubnets(java.util.Collection)orwithSubnets(java.util.Collection)if you want to override the existing values.- Parameters:
subnets- Information about one or more subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withSubnets
public DescribeSubnetsResult withSubnets(Collection<Subnet> subnets)
Information about one or more subnets.
- Parameters:
subnets- Information about one or more subnets.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeSubnetsResult clone()
-
-