Skip to content

Batch Stop Job Run

glue_batch_stop_job_run R Documentation

Stops one or more job runs for a specified job definition

Description

Stops one or more job runs for a specified job definition.

Usage

glue_batch_stop_job_run(JobName, JobRunIds)

Arguments

JobName

[required] The name of the job definition for which to stop job runs.

JobRunIds

[required] A list of the JobRunIds that should be stopped for that job definition.

Value

A list with the following syntax:

list(
  SuccessfulSubmissions = list(
    list(
      JobName = "string",
      JobRunId = "string"
    )
  ),
  Errors = list(
    list(
      JobName = "string",
      JobRunId = "string",
      ErrorDetail = list(
        ErrorCode = "string",
        ErrorMessage = "string"
      )
    )
  )
)

Request syntax

svc$batch_stop_job_run(
  JobName = "string",
  JobRunIds = list(
    "string"
  )
)