Skip to content

Delete Job Queue

batch_delete_job_queue R Documentation

Deletes the specified job queue

Description

Deletes the specified job queue. You must first disable submissions for a queue with the update_job_queue operation. All jobs in the queue are eventually terminated when you delete a job queue. The jobs are terminated at a rate of about 16 jobs each second.

It's not necessary to disassociate compute environments from a queue before submitting a delete_job_queue request.

Usage

batch_delete_job_queue(jobQueue)

Arguments

jobQueue

[required] The short name or full Amazon Resource Name (ARN) of the queue to delete.

Value

An empty list.

Request syntax

svc$delete_job_queue(
  jobQueue = "string"
)

Examples

## Not run: 
# This example deletes the GPGPU job queue.
svc$delete_job_queue(
  jobQueue = "GPGPU"
)

## End(Not run)