:doc:`Glue <../../glue>` / Client / get_job_bookmark

****************
get_job_bookmark
****************



.. py:method:: Glue.Client.get_job_bookmark(**kwargs)

  

  Returns information on a job bookmark entry.

   

  For more information about enabling and using job bookmarks, see:

   

  
  * `Tracking processed data using job bookmarks <https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html>`__
   
  * `Job parameters used by Glue <https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html>`__
   
  * `Job structure <https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job>`__
  

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobBookmark>`_  


  **Request Syntax**
  ::

    response = client.get_job_bookmark(
        JobName='string',
        RunId='string'
    )
    
  :type JobName: string
  :param JobName: **[REQUIRED]** 

    The name of the job in question.

    

  
  :type RunId: string
  :param RunId: 

    The unique run identifier associated with this job run.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'JobBookmarkEntry': {
              'JobName': 'string',
              'Version': 123,
              'Run': 123,
              'Attempt': 123,
              'PreviousRunId': 'string',
              'RunId': 'string',
              'JobBookmark': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **JobBookmarkEntry** *(dict) --* 

        A structure that defines a point that a job can resume processing.

        
        

        - **JobName** *(string) --* 

          The name of the job in question.

          
        

        - **Version** *(integer) --* 

          The version of the job.

          
        

        - **Run** *(integer) --* 

          The run ID number.

          
        

        - **Attempt** *(integer) --* 

          The attempt ID number.

          
        

        - **PreviousRunId** *(string) --* 

          The unique run identifier associated with the previous job run.

          
        

        - **RunId** *(string) --* 

          The run ID number.

          
        

        - **JobBookmark** *(string) --* 

          The bookmark itself.

          
    
  
  **Exceptions**
  
  *   :py:class:`Glue.Client.exceptions.EntityNotFoundException`

  
  *   :py:class:`Glue.Client.exceptions.InvalidInputException`

  
  *   :py:class:`Glue.Client.exceptions.InternalServiceException`

  
  *   :py:class:`Glue.Client.exceptions.OperationTimeoutException`

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

  