Class DescribeAccountAttributesResult
- java.lang.Object
-
- com.amazonaws.services.rds.model.DescribeAccountAttributesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeAccountAttributesResult extends Object implements Serializable, Cloneable
Data returned by the DescribeAccountAttributes action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeAccountAttributesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeAccountAttributesResultclone()booleanequals(Object obj)List<AccountQuota>getAccountQuotas()A list of AccountQuota objects.inthashCode()voidsetAccountQuotas(Collection<AccountQuota> accountQuotas)A list of AccountQuota objects.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeAccountAttributesResultwithAccountQuotas(AccountQuota... accountQuotas)A list of AccountQuota objects.DescribeAccountAttributesResultwithAccountQuotas(Collection<AccountQuota> accountQuotas)A list of AccountQuota objects.
-
-
-
Method Detail
-
getAccountQuotas
public List<AccountQuota> getAccountQuotas()
A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.
- Returns:
- A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.
-
setAccountQuotas
public void setAccountQuotas(Collection<AccountQuota> accountQuotas)
A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.
- Parameters:
accountQuotas- A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.
-
withAccountQuotas
public DescribeAccountAttributesResult withAccountQuotas(AccountQuota... accountQuotas)
A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.
NOTE: This method appends the values to the existing list (if any). Use
setAccountQuotas(java.util.Collection)orwithAccountQuotas(java.util.Collection)if you want to override the existing values.- Parameters:
accountQuotas- A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withAccountQuotas
public DescribeAccountAttributesResult withAccountQuotas(Collection<AccountQuota> accountQuotas)
A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.
- Parameters:
accountQuotas- A list of AccountQuota objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.- 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 DescribeAccountAttributesResult clone()
-
-