Class DescribeAccountLimitsResult
- java.lang.Object
-
- com.amazonaws.services.cloudformation.model.DescribeAccountLimitsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeAccountLimitsResult extends Object implements Serializable, Cloneable
The output for the DescribeAccountLimits action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeAccountLimitsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeAccountLimitsResultclone()booleanequals(Object obj)List<AccountLimit>getAccountLimits()An account limit structure that contain a list of AWS CloudFormation account limits and their values.StringgetNextToken()If the output exceeds 1 MB in size, a string that identifies the next page of limits.inthashCode()voidsetAccountLimits(Collection<AccountLimit> accountLimits)An account limit structure that contain a list of AWS CloudFormation account limits and their values.voidsetNextToken(String nextToken)If the output exceeds 1 MB in size, a string that identifies the next page of limits.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeAccountLimitsResultwithAccountLimits(AccountLimit... accountLimits)An account limit structure that contain a list of AWS CloudFormation account limits and their values.DescribeAccountLimitsResultwithAccountLimits(Collection<AccountLimit> accountLimits)An account limit structure that contain a list of AWS CloudFormation account limits and their values.DescribeAccountLimitsResultwithNextToken(String nextToken)If the output exceeds 1 MB in size, a string that identifies the next page of limits.
-
-
-
Method Detail
-
getAccountLimits
public List<AccountLimit> getAccountLimits()
An account limit structure that contain a list of AWS CloudFormation account limits and their values.
- Returns:
- An account limit structure that contain a list of AWS CloudFormation account limits and their values.
-
setAccountLimits
public void setAccountLimits(Collection<AccountLimit> accountLimits)
An account limit structure that contain a list of AWS CloudFormation account limits and their values.
- Parameters:
accountLimits- An account limit structure that contain a list of AWS CloudFormation account limits and their values.
-
withAccountLimits
public DescribeAccountLimitsResult withAccountLimits(AccountLimit... accountLimits)
An account limit structure that contain a list of AWS CloudFormation account limits and their values.
NOTE: This method appends the values to the existing list (if any). Use
setAccountLimits(java.util.Collection)orwithAccountLimits(java.util.Collection)if you want to override the existing values.- Parameters:
accountLimits- An account limit structure that contain a list of AWS CloudFormation account limits and their values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withAccountLimits
public DescribeAccountLimitsResult withAccountLimits(Collection<AccountLimit> accountLimits)
An account limit structure that contain a list of AWS CloudFormation account limits and their values.
- Parameters:
accountLimits- An account limit structure that contain a list of AWS CloudFormation account limits and their values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.
- Parameters:
nextToken- If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.
-
getNextToken
public String getNextToken()
If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.
- Returns:
- If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.
-
withNextToken
public DescribeAccountLimitsResult withNextToken(String nextToken)
If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.
- Parameters:
nextToken- If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.- 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 DescribeAccountLimitsResult clone()
-
-