List Job Runs
datazone_list_job_runs | R Documentation |
Lists job runs¶
Description¶
Lists job runs.
Usage¶
datazone_list_job_runs(domainIdentifier, jobIdentifier, maxResults,
nextToken, sortOrder, status)
Arguments¶
domainIdentifier |
[required] The ID of the domain where you want to list job runs. |
jobIdentifier |
[required] The ID of the job run. |
maxResults |
The maximum number of job runs to return in a single call to ListJobRuns. When the number of job runs to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListJobRuns to list the next set of job runs. |
nextToken |
When the number of job runs is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of job runs, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListJobRuns to list the next set of job runs. |
sortOrder |
Specifies the order in which job runs are to be sorted. |
status |
The status of a job run. |
Value¶
A list with the following syntax:
list(
items = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
domainId = "string",
endTime = as.POSIXct(
"2015-01-01"
),
error = list(
message = "string"
),
jobId = "string",
jobType = "LINEAGE",
runId = "string",
runMode = "SCHEDULED"|"ON_DEMAND",
startTime = as.POSIXct(
"2015-01-01"
),
status = "SCHEDULED"|"IN_PROGRESS"|"SUCCESS"|"PARTIALLY_SUCCEEDED"|"FAILED"|"ABORTED"|"TIMED_OUT"|"CANCELED"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_job_runs(
domainIdentifier = "string",
jobIdentifier = "string",
maxResults = 123,
nextToken = "string",
sortOrder = "ASCENDING"|"DESCENDING",
status = "SCHEDULED"|"IN_PROGRESS"|"SUCCESS"|"PARTIALLY_SUCCEEDED"|"FAILED"|"ABORTED"|"TIMED_OUT"|"CANCELED"
)