Package com.amazonaws.services.ec2.model
Class DescribeAccountAttributesResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.DescribeAccountAttributesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeAccountAttributesResult extends Object implements Serializable, Cloneable
Contains the output of DescribeAccountAttributes.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeAccountAttributesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeAccountAttributesResult
clone()
boolean
equals(Object obj)
List<AccountAttribute>
getAccountAttributes()
Information about one or more account attributes.int
hashCode()
void
setAccountAttributes(Collection<AccountAttribute> accountAttributes)
Information about one or more account attributes.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeAccountAttributesResult
withAccountAttributes(AccountAttribute... accountAttributes)
Information about one or more account attributes.DescribeAccountAttributesResult
withAccountAttributes(Collection<AccountAttribute> accountAttributes)
Information about one or more account attributes.
-
-
-
Method Detail
-
getAccountAttributes
public List<AccountAttribute> getAccountAttributes()
Information about one or more account attributes.
- Returns:
- Information about one or more account attributes.
-
setAccountAttributes
public void setAccountAttributes(Collection<AccountAttribute> accountAttributes)
Information about one or more account attributes.
- Parameters:
accountAttributes
- Information about one or more account attributes.
-
withAccountAttributes
public DescribeAccountAttributesResult withAccountAttributes(AccountAttribute... accountAttributes)
Information about one or more account attributes.
NOTE: This method appends the values to the existing list (if any). Use
setAccountAttributes(java.util.Collection)
orwithAccountAttributes(java.util.Collection)
if you want to override the existing values.- Parameters:
accountAttributes
- Information about one or more account attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withAccountAttributes
public DescribeAccountAttributesResult withAccountAttributes(Collection<AccountAttribute> accountAttributes)
Information about one or more account attributes.
- Parameters:
accountAttributes
- Information about one or more account attributes.- 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 DescribeAccountAttributesResult clone()
-
-