:doc:`imagebuilder <../../imagebuilder>` / Paginator / ListLifecycleExecutions

***********************
ListLifecycleExecutions
***********************



.. py:class:: imagebuilder.Paginator.ListLifecycleExecutions

  ::

    
    paginator = client.get_paginator('list_lifecycle_executions')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`imagebuilder.Client.list_lifecycle_executions`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListLifecycleExecutions>`_    


    **Request Syntax**
    ::

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

      The Amazon Resource Name (ARN) of the resource for which to get a list of lifecycle runtime instances.

      

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

      
      ::

        {
            'lifecycleExecutions': [
                {
                    'lifecycleExecutionId': 'string',
                    'lifecyclePolicyArn': 'string',
                    'resourcesImpactedSummary': {
                        'hasImpactedResources': True|False
                    },
                    'state': {
                        'status': 'IN_PROGRESS'|'CANCELLED'|'CANCELLING'|'FAILED'|'SUCCESS'|'PENDING',
                        'reason': 'string'
                    },
                    'startTime': datetime(2015, 1, 1),
                    'endTime': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **lifecycleExecutions** *(list) --* 

          A list of lifecycle runtime instances for the specified resource.

          
          

          - *(dict) --* 

            Contains metadata from a runtime instance of a lifecycle policy.

            
            

            - **lifecycleExecutionId** *(string) --* 

              Identifies the lifecycle policy runtime instance.

              
            

            - **lifecyclePolicyArn** *(string) --* 

              The Amazon Resource Name (ARN) of the lifecycle policy that ran.

              
            

            - **resourcesImpactedSummary** *(dict) --* 

              Contains information about associated resources that are identified for action by the runtime instance of the lifecycle policy.

              
              

              - **hasImpactedResources** *(boolean) --* 

                Indicates whether an image resource that was identified for a lifecycle action has associated resources that are also impacted.

                
          
            

            - **state** *(dict) --* 

              Runtime state that reports if the policy action ran successfully, failed, or was skipped.

              
              

              - **status** *(string) --* 

                The runtime status of the lifecycle execution.

                
              

              - **reason** *(string) --* 

                The reason for the current status.

                
          
            

            - **startTime** *(datetime) --* 

              The timestamp when the lifecycle runtime instance started.

              
            

            - **endTime** *(datetime) --* 

              The timestamp when the lifecycle runtime instance completed.

              
        
      
        

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

          A token to resume pagination.

          
    