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