Retrieves metadata for all runs of a given job definition.
glue_get_job_runs(JobName, NextToken, MaxResults)
A list with the following syntax:
list(
JobRuns = list(
list(
Id = "string",
Attempt = 123,
PreviousRunId = "string",
TriggerName = "string",
JobName = "string",
StartedOn = as.POSIXct(
"2015-01-01"
),
LastModifiedOn = as.POSIXct(
"2015-01-01"
),
CompletedOn = as.POSIXct(
"2015-01-01"
),
JobRunState = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT",
Arguments = list(
"string"
),
ErrorMessage = "string",
PredecessorRuns = list(
list(
JobName = "string",
RunId = "string"
)
),
AllocatedCapacity = 123,
ExecutionTime = 123,
Timeout = 123,
MaxCapacity = 123.0,
WorkerType = "Standard"|"G.1X"|"G.2X",
NumberOfWorkers = 123,
SecurityConfiguration = "string",
LogGroupName = "string",
NotificationProperty = list(
NotifyDelayAfter = 123
),
GlueVersion = "string"
)
),
NextToken = "string"
)
[required] The name of the job definition for which to retrieve all job runs.
A continuation token, if this is a continuation call.
The maximum size of the response.
svc$get_job_runs(
JobName = "string",
NextToken = "string",
MaxResults = 123
)