:doc:`mgn <../../mgn>` / Client / describe_job_log_items

**********************
describe_job_log_items
**********************



.. py:method:: mgn.Client.describe_job_log_items(**kwargs)

  

  Retrieves detailed job log items with paging.

  

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


  **Request Syntax**
  ::

    response = client.describe_job_log_items(
        jobID='string',
        maxResults=123,
        nextToken='string',
        accountID='string'
    )
    
  :type jobID: string
  :param jobID: **[REQUIRED]** 

    Request to describe Job log job ID.

    

  
  :type maxResults: integer
  :param maxResults: 

    Request to describe Job log item maximum results.

    

  
  :type nextToken: string
  :param nextToken: 

    Request to describe Job log next token.

    

  
  :type accountID: string
  :param accountID: 

    Request to describe Job log Account ID.

    

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

        Request to describe Job log response next token.

        
  
  **Exceptions**
  
  *   :py:class:`mgn.Client.exceptions.UninitializedAccountException`

  
  *   :py:class:`mgn.Client.exceptions.ValidationException`

  