:doc:`ElasticBeanstalk <../../elasticbeanstalk>` / Paginator / DescribeEnvironmentManagedActionHistory

***************************************
DescribeEnvironmentManagedActionHistory
***************************************



.. py:class:: ElasticBeanstalk.Paginator.DescribeEnvironmentManagedActionHistory

  ::

    
    paginator = client.get_paginator('describe_environment_managed_action_history')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`ElasticBeanstalk.Client.describe_environment_managed_action_history`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/DescribeEnvironmentManagedActionHistory>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          EnvironmentId='string',
          EnvironmentName='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type EnvironmentId: string
    :param EnvironmentId: 

      The environment ID of the target environment.

      

    
    :type EnvironmentName: string
    :param EnvironmentName: 

      The name of the target environment.

      

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

      
      ::

        {
            'ManagedActionHistoryItems': [
                {
                    'ActionId': 'string',
                    'ActionType': 'InstanceRefresh'|'PlatformUpdate'|'Unknown',
                    'ActionDescription': 'string',
                    'FailureType': 'UpdateCancelled'|'CancellationFailed'|'RollbackFailed'|'RollbackSuccessful'|'InternalFailure'|'InvalidEnvironmentState'|'PermissionsError',
                    'Status': 'Completed'|'Failed'|'Unknown',
                    'FailureDescription': 'string',
                    'ExecutedTime': datetime(2015, 1, 1),
                    'FinishedTime': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 

        A result message containing a list of completed and failed managed actions.

        
        

        - **ManagedActionHistoryItems** *(list) --* 

          A list of completed and failed managed actions.

          
          

          - *(dict) --* 

            The record of a completed or failed managed action.

            
            

            - **ActionId** *(string) --* 

              A unique identifier for the managed action.

              
            

            - **ActionType** *(string) --* 

              The type of the managed action.

              
            

            - **ActionDescription** *(string) --* 

              A description of the managed action.

              
            

            - **FailureType** *(string) --* 

              If the action failed, the type of failure.

              
            

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

              The status of the action.

              
            

            - **FailureDescription** *(string) --* 

              If the action failed, a description of the failure.

              
            

            - **ExecutedTime** *(datetime) --* 

              The date and time that the action started executing.

              
            

            - **FinishedTime** *(datetime) --* 

              The date and time that the action finished executing.

              
        
      
    