Skip to content

Get Job Bookmark

glue_get_job_bookmark R Documentation

Returns information on a job bookmark entry

Description

Returns information on a job bookmark entry.

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

Usage

glue_get_job_bookmark(JobName, RunId)

Arguments

JobName

[required] The name of the job in question.

RunId

The unique run identifier associated with this job run.

Value

A list with the following syntax:

list(
  JobBookmarkEntry = list(
    JobName = "string",
    Version = 123,
    Run = 123,
    Attempt = 123,
    PreviousRunId = "string",
    RunId = "string",
    JobBookmark = "string"
  )
)

Request syntax

svc$get_job_bookmark(
  JobName = "string",
  RunId = "string"
)