:doc:`BillingandCostManagementPricingCalculator <../../bcm-pricing-calculator>` / Paginator / ListBillEstimateLineItems

*************************
ListBillEstimateLineItems
*************************



.. py:class:: BillingandCostManagementPricingCalculator.Paginator.ListBillEstimateLineItems

  ::

    
    paginator = client.get_paginator('list_bill_estimate_line_items')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`BillingandCostManagementPricingCalculator.Client.list_bill_estimate_line_items`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bcm-pricing-calculator-2024-06-19/ListBillEstimateLineItems>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          billEstimateId='string',
          filters=[
              {
                  'name': 'USAGE_ACCOUNT_ID'|'SERVICE_CODE'|'USAGE_TYPE'|'OPERATION'|'LOCATION'|'LINE_ITEM_TYPE',
                  'values': [
                      'string',
                  ],
                  'matchOption': 'EQUALS'|'STARTS_WITH'|'CONTAINS'
              },
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type billEstimateId: string
    :param billEstimateId: **[REQUIRED]** 

      The unique identifier of the bill estimate to list line items for.

      

    
    :type filters: list
    :param filters: 

      Filters to apply to the list of line items.

      

    
      - *(dict) --* 

        Represents a filter for listing bill estimate line items.

        

      
        - **name** *(string) --* **[REQUIRED]** 

          The name of the filter attribute.

          

        
        - **values** *(list) --* **[REQUIRED]** 

          The values to filter by.

          

        
          - *(string) --* 

          
      
        - **matchOption** *(string) --* 

          The match option for the filter (e.g., equals, contains).

          

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

      
      ::

        {
            'items': [
                {
                    'serviceCode': 'string',
                    'usageType': 'string',
                    'operation': 'string',
                    'location': 'string',
                    'availabilityZone': 'string',
                    'id': 'string',
                    'lineItemId': 'string',
                    'lineItemType': 'string',
                    'payerAccountId': 'string',
                    'usageAccountId': 'string',
                    'estimatedUsageQuantity': {
                        'amount': 123.0,
                        'unit': 'string'
                    },
                    'estimatedCost': {
                        'amount': 123.0,
                        'currency': 'USD'
                    },
                    'historicalUsageQuantity': {
                        'amount': 123.0,
                        'unit': 'string'
                    },
                    'historicalCost': {
                        'amount': 123.0,
                        'currency': 'USD'
                    },
                    'savingsPlanArns': [
                        'string',
                    ]
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **items** *(list) --* 

          The list of line items associated with the bill estimate.

          
          

          - *(dict) --* 

            Provides a summary of a line item in a bill estimate.

            
            

            - **serviceCode** *(string) --* 

              The Amazon Web Services service code associated with this line item.

              
            

            - **usageType** *(string) --* 

              The type of usage for this line item.

              
            

            - **operation** *(string) --* 

              The specific operation associated with this line item.

              
            

            - **location** *(string) --* 

              The location associated with this line item.

              
            

            - **availabilityZone** *(string) --* 

              The availability zone associated with this line item, if applicable.

              
            

            - **id** *(string) --* 

              The unique identifier of this line item.

              
            

            - **lineItemId** *(string) --* 

              The line item identifier from the original bill.

              
            

            - **lineItemType** *(string) --* 

              The type of this line item (e.g., Usage, Tax, Credit).

              
            

            - **payerAccountId** *(string) --* 

              The Amazon Web Services account ID of the payer for this line item.

              
            

            - **usageAccountId** *(string) --* 

              The Amazon Web Services account ID associated with the usage for this line item.

              
            

            - **estimatedUsageQuantity** *(dict) --* 

              The estimated usage quantity for this line item.

              
              

              - **amount** *(float) --* 

                The numeric value of the usage quantity result.

                
              

              - **unit** *(string) --* 

                The unit of measurement for the usage quantity result.

                
          
            

            - **estimatedCost** *(dict) --* 

              The estimated cost for this line item.

              
              

              - **amount** *(float) --* 

                The numeric value of the cost.

                
              

              - **currency** *(string) --* 

                The currency code for the cost amount.

                
          
            

            - **historicalUsageQuantity** *(dict) --* 

              The historical usage quantity for this line item.

              
              

              - **amount** *(float) --* 

                The numeric value of the usage quantity result.

                
              

              - **unit** *(string) --* 

                The unit of measurement for the usage quantity result.

                
          
            

            - **historicalCost** *(dict) --* 

              The historical cost for this line item.

              
              

              - **amount** *(float) --* 

                The numeric value of the cost.

                
              

              - **currency** *(string) --* 

                The currency code for the cost amount.

                
          
            

            - **savingsPlanArns** *(list) --* 

              The Amazon Resource Names (ARNs) of any Savings Plans applied to this line item.

              
              

              - *(string) --* 
          
        
      
        

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

          A token to resume pagination.

          
    