List Job Run Attempts
| emrserverless_list_job_run_attempts | R Documentation |
Lists all attempt of a job run¶
Description¶
Lists all attempt of a job run.
Usage¶
Arguments¶
applicationId[required] The ID of the application for which to list job runs.
jobRunId[required] The ID of the job run to list.
nextTokenThe token for the next set of job run attempt results.
maxResultsThe maximum number of job run attempts to list.
Value¶
A list with the following syntax:
list(
jobRunAttempts = list(
list(
applicationId = "string",
id = "string",
name = "string",
mode = "BATCH"|"STREAMING",
arn = "string",
createdBy = "string",
jobCreatedAt = as.POSIXct(
"2015-01-01"
),
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
executionRole = "string",
state = "SUBMITTED"|"PENDING"|"SCHEDULED"|"RUNNING"|"SUCCESS"|"FAILED"|"CANCELLING"|"CANCELLED",
stateDetails = "string",
releaseLabel = "string",
type = "string",
attempt = 123
)
),
nextToken = "string"
)