:doc:`PartnerCentralBenefits <../../partnercentral-benefits>` / Paginator / ListBenefitAllocations

**********************
ListBenefitAllocations
**********************



.. py:class:: PartnerCentralBenefits.Paginator.ListBenefitAllocations

  ::

    
    paginator = client.get_paginator('list_benefit_allocations')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`PartnerCentralBenefits.Client.list_benefit_allocations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/partnercentral-benefits-2018-05-10/ListBenefitAllocations>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          Catalog='string',
          FulfillmentTypes=[
              'CREDITS'|'CASH'|'ACCESS',
          ],
          BenefitIdentifiers=[
              'string',
          ],
          BenefitApplicationIdentifiers=[
              'string',
          ],
          Status=[
              'ACTIVE'|'INACTIVE'|'FULFILLED',
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type Catalog: string
    :param Catalog: **[REQUIRED]** 

      The catalog identifier to filter benefit allocations by catalog.

      

    
    :type FulfillmentTypes: list
    :param FulfillmentTypes: 

      Filter benefit allocations by specific fulfillment types.

      

    
      - *(string) --* 

      
  
    :type BenefitIdentifiers: list
    :param BenefitIdentifiers: 

      Filter benefit allocations by specific benefit identifiers.

      

    
      - *(string) --* 

      
  
    :type BenefitApplicationIdentifiers: list
    :param BenefitApplicationIdentifiers: 

      Filter benefit allocations by specific benefit application identifiers.

      

    
      - *(string) --* 

      
  
    :type Status: list
    :param Status: 

      Filter benefit allocations by their current status.

      

    
      - *(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.

        

      
      - **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**

      
      ::

        {
            'BenefitAllocationSummaries': [
                {
                    'Id': 'string',
                    'Catalog': 'string',
                    'Arn': 'string',
                    'Status': 'ACTIVE'|'INACTIVE'|'FULFILLED',
                    'StatusReason': 'string',
                    'Name': 'string',
                    'BenefitId': 'string',
                    'BenefitApplicationId': 'string',
                    'FulfillmentTypes': [
                        'CREDITS'|'CASH'|'ACCESS',
                    ],
                    'CreatedAt': datetime(2015, 1, 1),
                    'ExpiresAt': datetime(2015, 1, 1),
                    'ApplicableBenefitIds': [
                        'string',
                    ]
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **BenefitAllocationSummaries** *(list) --* 

          A list of benefit allocation summaries matching the specified criteria.

          
          

          - *(dict) --* 

            A summary view of a benefit allocation containing key information for list operations.

            
            

            - **Id** *(string) --* 

              The unique identifier of the benefit allocation.

              
            

            - **Catalog** *(string) --* 

              The catalog identifier that the benefit allocation belongs to.

              
            

            - **Arn** *(string) --* 

              The Amazon Resource Name (ARN) of the benefit allocation.

              
            

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

              The current status of the benefit allocation.

              
            

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

              Additional information explaining the current status of the benefit allocation.

              
            

            - **Name** *(string) --* 

              The human-readable name of the benefit allocation.

              
            

            - **BenefitId** *(string) --* 

              The identifier of the benefit that this allocation is based on.

              
            

            - **BenefitApplicationId** *(string) --* 

              The identifier of the benefit application that resulted in this allocation.

              
            

            - **FulfillmentTypes** *(list) --* 

              The fulfillment types used for this benefit allocation.

              
              

              - *(string) --* 
          
            

            - **CreatedAt** *(datetime) --* 

              The timestamp when the benefit allocation was created.

              
            

            - **ExpiresAt** *(datetime) --* 

              The timestamp when the benefit allocation expires.

              
            

            - **ApplicableBenefitIds** *(list) --* 

              The identifiers of the benefits applicable for this allocation.

              
              

              - *(string) --* 
          
        
      
    