Skip to main content

account_limits

Creates, updates, deletes, gets or lists an account_limits resource.

Overview

Nameaccount_limits
TypeResource
Idaws.cloudformation.account_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the account limit. Values: ConcurrentResourcesLimit | StackLimit | StackOutputsLimit
valueintegerThe value that's associated with the account limit name.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_limitsselectregionNextTokenRetrieves your account's CloudFormation limits, such as the maximum number of stacks that you can create in your account. For more information about account limits, see Understand CloudFormation quotas in the CloudFormation User Guide.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
NextTokenstringThe token for the next set of items to return. (You received this token from a previous call.)

SELECT examples

Retrieves your account's CloudFormation limits, such as the maximum number of stacks that you can create in your account. For more information about account limits, see Understand CloudFormation quotas in the CloudFormation User Guide.

SELECT
name,
value
FROM aws.cloudformation.account_limits
WHERE region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
;