DescribeAccountLimits

class CloudFormation.Paginator.DescribeAccountLimits
paginator = client.get_paginator('describe_account_limits')
paginate(**kwargs)

Creates an iterator that will paginate through responses from CloudFormation.Client.describe_account_limits().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'AccountLimits': [
        {
            'Name': 'string',
            'Value': 123
        },
    ],

}

Response Structure

  • (dict) --

    The output for the DescribeAccountLimits action.

    • AccountLimits (list) --

      An account limit structure that contain a list of CloudFormation account limits and their values.

      • (dict) --

        The AccountLimit data type.

        CloudFormation has the following limits per account:

        • Number of concurrent resources
        • Number of stacks
        • Number of stack outputs

        For more information about these account limits, and other CloudFormation limits, see CloudFormation quotas in the CloudFormation User Guide .

        • Name (string) --

          The name of the account limit.

          Values: ConcurrentResourcesLimit | StackLimit | StackOutputsLimit

        • Value (integer) --

          The value that's associated with the account limit name.