v1

latestOpenAPI 3.1.0Apache 2.02026-07-17870411.0 KB
AWS Batch

List AWS Batch job queues visible to this EDH environment

Retrieves AWS Batch job queues that are tagged with the EDH visibility tag for this cluster. Only queues with status VALID and state ENABLED are returned. If a specific job queue name is provided, only that queue is returned (if it has the correct tag). Otherwise, all matching queues are returned with pagination handled automatically.

get/api/containers/batch/job_queue

Query parameters

job_queuestring

Name or ARN of a specific job queue to look up. If omitted, all visible job queues are returned.

Headers

X-EDH-USERstring required

EDH username for authentication

X-EDH-TOKENstring required

EDH authentication token

Response

Job queues retrieved successfully

successboolean required

Example response

{
  "success": true,
  "message": [
    {
      "jobQueueName": "my-job-queue",
      "jobQueueArn": "arn:aws:batch:us-east-1:123456789012:job-queue/my-job-queue",
      "jobQueueType": "STANDARD",
      "state": "ENABLED",
      "status": "VALID",
      "priority": 1
    }
  ]
}