:doc:`Lambda <../../lambda>` / Paginator / ListProvisionedConcurrencyConfigs

*********************************
ListProvisionedConcurrencyConfigs
*********************************



.. py:class:: Lambda.Paginator.ListProvisionedConcurrencyConfigs

  ::

    
    paginator = client.get_paginator('list_provisioned_concurrency_configs')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Lambda.Client.list_provisioned_concurrency_configs`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListProvisionedConcurrencyConfigs>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          FunctionName='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type FunctionName: string
    :param FunctionName: **[REQUIRED]** 

      The name or ARN of the Lambda function.

       

      **Name formats**

       

      
      * **Function name** – ``my-function``.
       
      * **Function ARN** – ``arn:aws:lambda:us-west-2:123456789012:function:my-function``.
       
      * **Partial ARN** – ``123456789012:function:my-function``.
      

       

      The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

      

    
    :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.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

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

        

      
    
    
    :rtype: dict
    :returns: 
      
      **Response Syntax**

      
      ::

        {
            'ProvisionedConcurrencyConfigs': [
                {
                    'FunctionArn': 'string',
                    'RequestedProvisionedConcurrentExecutions': 123,
                    'AvailableProvisionedConcurrentExecutions': 123,
                    'AllocatedProvisionedConcurrentExecutions': 123,
                    'Status': 'IN_PROGRESS'|'READY'|'FAILED',
                    'StatusReason': 'string',
                    'LastModified': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ProvisionedConcurrencyConfigs** *(list) --* 

          A list of provisioned concurrency configurations.

          
          

          - *(dict) --* 

            Details about the provisioned concurrency configuration for a function alias or version.

            
            

            - **FunctionArn** *(string) --* 

              The Amazon Resource Name (ARN) of the alias or version.

              
            

            - **RequestedProvisionedConcurrentExecutions** *(integer) --* 

              The amount of provisioned concurrency requested.

              
            

            - **AvailableProvisionedConcurrentExecutions** *(integer) --* 

              The amount of provisioned concurrency available.

              
            

            - **AllocatedProvisionedConcurrentExecutions** *(integer) --* 

              The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.

              
            

            - **Status** *(string) --* 

              The status of the allocation process.

              
            

            - **StatusReason** *(string) --* 

              For failed allocations, the reason that provisioned concurrency could not be allocated.

              
            

            - **LastModified** *(string) --* 

              The date and time that a user last updated the configuration, in `ISO 8601 format <https://www.iso.org/iso-8601-date-and-time-format.html>`__.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    