account_limits
Creates, updates, deletes, gets or lists an account_limits resource.
Overview
| Name | account_limits |
| Type | Resource |
| Id | aws.cloudformation.account_limits |
Fields
The following fields are returned by SELECT queries:
- describe_account_limits
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the account limit. Values: ConcurrentResourcesLimit | StackLimit | StackOutputsLimit |
value | integer | The value that's associated with the account limit name. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_limits | select | region | NextToken | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
NextToken | string | The token for the next set of items to return. (You received this token from a previous call.) |
SELECT examples
- describe_account_limits
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 }}'
;