Skip to content

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

emrserverless_list_job_run_attempts(applicationId, jobRunId, nextToken,
  maxResults)

Arguments

applicationId

[required] The ID of the application for which to list job runs.

jobRunId

[required] The ID of the job run to list.

nextToken

The token for the next set of job run attempt results.

maxResults

The 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"
)

Request syntax

svc$list_job_run_attempts(
  applicationId = "string",
  jobRunId = "string",
  nextToken = "string",
  maxResults = 123
)