paws.compute (version 0.1.0)

batch_terminate_job: Terminates a job in a job queue

Description

Terminates a job in a job queue. Jobs that are in the STARTING or RUNNING state are terminated, which causes them to transition to FAILED. Jobs that have not progressed to the STARTING state are cancelled.

Usage

batch_terminate_job(jobId, reason)

Arguments

jobId

[required] The AWS Batch job ID of the job to terminate.

reason

[required] A message to attach to the job that explains the reason for canceling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

Request syntax

svc$terminate_job(
  jobId = "string",
  reason = "string"
)

Examples

Run this code
# NOT RUN {
# This example terminates a job with the specified job ID.
# }
# NOT RUN {
svc$terminate_job(
  jobId = "61e743ed-35e4-48da-b2de-5c8333821c84",
  reason = "Terminating job."
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab