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 DescribeAccountLimitsResult
clone()
boolean
equals(Object obj)
List<AccountLimit>
getAccountLimits()
An account limit structure that contain a list of AWS CloudFormation account limits and their values.String
getNextToken()
If the output exceeds 1 MB in size, a string that identifies the next page of limits.int
hashCode()
void
setAccountLimits(Collection<AccountLimit> accountLimits)
An account limit structure that contain a list of AWS CloudFormation account limits and their values.void
setNextToken(String nextToken)
If the output exceeds 1 MB in size, a string that identifies the next page of limits.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeAccountLimitsResult
withAccountLimits(AccountLimit... accountLimits)
An account limit structure that contain a list of AWS CloudFormation account limits and their values.DescribeAccountLimitsResult
withAccountLimits(Collection<AccountLimit> accountLimits)
An account limit structure that contain a list of AWS CloudFormation account limits and their values.DescribeAccountLimitsResult
withNextToken(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeAccountLimitsResult clone()
-
-