:doc:`mgn <../../mgn>` / Paginator / DescribeJobLogItems

*******************
DescribeJobLogItems
*******************



.. py:class:: mgn.Paginator.DescribeJobLogItems

  ::

    
    paginator = client.get_paginator('describe_job_log_items')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`mgn.Client.describe_job_log_items`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeJobLogItems>`_    


    **Request Syntax**
    ::

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

      Request to describe Job log job ID.

      

    
    :type accountID: string
    :param accountID: 

      Request to describe Job log Account ID.

      

    
    :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': [
                {
                    'logDateTime': 'string',
                    'event': 'JOB_START'|'SERVER_SKIPPED'|'CLEANUP_START'|'CLEANUP_END'|'CLEANUP_FAIL'|'SNAPSHOT_START'|'SNAPSHOT_END'|'SNAPSHOT_FAIL'|'USING_PREVIOUS_SNAPSHOT'|'CONVERSION_START'|'CONVERSION_END'|'CONVERSION_FAIL'|'LAUNCH_START'|'LAUNCH_FAILED'|'JOB_CANCEL'|'JOB_END',
                    'eventData': {
                        'sourceServerID': 'string',
                        'conversionServerID': 'string',
                        'targetInstanceID': 'string',
                        'rawError': 'string',
                        'attemptCount': 123,
                        'maxAttemptsCount': 123
                    }
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

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

          Request to describe Job log response items.

          
          

          - *(dict) --* 

            Job log.

            
            

            - **logDateTime** *(string) --* 

              Job log event date and time.

              
            

            - **event** *(string) --* 

              Job log event.

              
            

            - **eventData** *(dict) --* 

              Job event data

              
              

              - **sourceServerID** *(string) --* 

                Job Event Source Server ID.

                
              

              - **conversionServerID** *(string) --* 

                Job Event conversion Server ID.

                
              

              - **targetInstanceID** *(string) --* 

                Job Event Target instance ID.

                
              

              - **rawError** *(string) --* 

                Job error.

                
              

              - **attemptCount** *(integer) --* 

                Retries for this operation.

                
              

              - **maxAttemptsCount** *(integer) --* 

                The maximum number of retries that will be attempted if this operation failed.

                
          
        
      
        

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

          A token to resume pagination.

          
    