:doc:`CloudFormation <../../cloudformation>` / Paginator / DescribeAccountLimits

*********************
DescribeAccountLimits
*********************



.. py:class:: CloudFormation.Paginator.DescribeAccountLimits

  ::

    
    paginator = client.get_paginator('describe_account_limits')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`CloudFormation.Client.describe_account_limits`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeAccountLimits>`_    


    **Request Syntax**
    ::

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

      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.

        

      
    
    
    :rtype: 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) --* 

            Describes the current CloudFormation limits for your account.

             

            CloudFormation has the following limits per account:

             

            
            * Number of concurrent resources
             
            * Number of stacks
             
            * Number of stack outputs
            

             

            For more information, see `Understand CloudFormation quotas <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html>`__ 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.

              
        
      
    