Skip to main content

job_bookmarks

Creates, updates, deletes, gets or lists a job_bookmarks resource.

Overview

Namejob_bookmarks
TypeResource
Idaws.glue.job_bookmarks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
attemptintegerThe attempt ID number.
job_bookmarkstringThe bookmark itself.
job_namestringThe name of the job in question.
previous_run_idstringThe unique run identifier associated with the previous job run.
runintegerThe run ID number.
run_idstringThe run ID number.
versionintegerThe version of the job.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_job_bookmarkselectregionReturns information on a job bookmark entry. For more information about enabling and using job bookmarks, see: Tracking processed data using job bookmarks Job parameters used by Glue Job structure

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns information on a job bookmark entry. For more information about enabling and using job bookmarks, see: Tracking processed data using job bookmarks Job parameters used by Glue Job structure

SELECT
attempt,
job_bookmark,
job_name,
previous_run_id,
run,
run_id,
version
FROM aws.glue.job_bookmarks
WHERE region = '{{ region }}' -- required
;