Stops one or more job runs for a specified job definition.
glue_batch_stop_job_run(JobName, JobRunIds)
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"
)
)
)
)
[required] The name of the job definition for which to stop job runs.
[required] A list of the JobRunIds
that should be stopped for that job
definition.
svc$batch_stop_job_run(
JobName = "string",
JobRunIds = list(
"string"
)
)