job_bookmarks
Creates, updates, deletes, gets or lists a job_bookmarks resource.
Overview
| Name | job_bookmarks |
| Type | Resource |
| Id | aws.glue.job_bookmarks |
Fields
The following fields are returned by SELECT queries:
- get_job_bookmark
| Name | Datatype | Description |
|---|---|---|
attempt | integer | The attempt ID number. |
job_bookmark | string | The bookmark itself. |
job_name | string | The name of the job in question. |
previous_run_id | string | The unique run identifier associated with the previous job run. |
run | integer | The run ID number. |
run_id | string | The run ID number. |
version | integer | The version of the job. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_job_bookmark | select | region | 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 |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_job_bookmark
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
;