:doc:`BillingandCostManagementDataExports <../../bcm-data-exports>` / Paginator / ListExecutions

**************
ListExecutions
**************



.. py:class:: BillingandCostManagementDataExports.Paginator.ListExecutions

  ::

    
    paginator = client.get_paginator('list_executions')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`BillingandCostManagementDataExports.Client.list_executions`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bcm-data-exports-2023-11-26/ListExecutions>`_    


    **Request Syntax**
    ::

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

      The Amazon Resource Name (ARN) for this export.

      

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

      
      ::

        {
            'Executions': [
                {
                    'ExecutionId': 'string',
                    'ExecutionStatus': {
                        'CompletedAt': datetime(2015, 1, 1),
                        'CreatedAt': datetime(2015, 1, 1),
                        'LastUpdatedAt': datetime(2015, 1, 1),
                        'StatusCode': 'INITIATION_IN_PROCESS'|'QUERY_QUEUED'|'QUERY_IN_PROCESS'|'QUERY_FAILURE'|'DELIVERY_IN_PROCESS'|'DELIVERY_SUCCESS'|'DELIVERY_FAILURE',
                        'StatusReason': 'INSUFFICIENT_PERMISSION'|'BILL_OWNER_CHANGED'|'INTERNAL_FAILURE'
                    }
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **Executions** *(list) --* 

          The list of executions.

          
          

          - *(dict) --* 

            The reference for the data export update.

            
            

            - **ExecutionId** *(string) --* 

              The ID for this specific execution.

              
            

            - **ExecutionStatus** *(dict) --* 

              The status of this specific execution.

              
              

              - **CompletedAt** *(datetime) --* 

                The time when the execution was completed.

                
              

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

                The time when the execution was created.

                
              

              - **LastUpdatedAt** *(datetime) --* 

                The time when the execution was last updated.

                
              

              - **StatusCode** *(string) --* 

                The code for the status of the execution.

                
              

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

                The reason for the failed status.

                
          
        
      
    