AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DeleteJobQueue operation. Deletes the specified job queue. You must first disable submissions for a queue with the UpdateJobQueue 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 DeleteJobQueue request.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Batch.AmazonBatchRequest
      Amazon.Batch.Model.DeleteJobQueueRequest

Namespace: Amazon.Batch.Model
Assembly: AWSSDK.Batch.dll
Version: 3.x.y.z

Syntax

C#
public class DeleteJobQueueRequest : AmazonBatchRequest
         IAmazonWebServiceRequest

The DeleteJobQueueRequest type exposes the following members

Constructors

NameDescription
Public Method DeleteJobQueueRequest()

Properties

NameTypeDescription
Public Property JobQueue System.String

Gets and sets the property JobQueue.

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

Examples

This example deletes the GPGPU job queue.

To delete a job queue


var client = new AmazonBatchClient();
var response = client.DeleteJobQueue(new DeleteJobQueueRequest 
{
    JobQueue = "GPGPU"
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5