Describe Job Queues
| batch_describe_job_queues | R Documentation |
Describes one or more of your job queues¶
Description¶
Describes one or more of your job queues.
Usage¶
Arguments¶
jobQueuesA list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.
maxResultsThe maximum number of results returned by
describe_job_queuesin paginated output. When this parameter is used,describe_job_queuesonly returnsmaxResultsresults in a single page and anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherdescribe_job_queuesrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter isn't used, thendescribe_job_queuesreturns up to 100 results and anextTokenvalue if applicable.nextTokenThe
nextTokenvalue returned from a previous paginateddescribe_job_queuesrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue. This value isnullwhen there are no more results to return.Treat this token as an opaque identifier that's only used to retrieve the next items in a list and not for other programmatic purposes.
Value¶
A list with the following syntax:
list(
jobQueues = list(
list(
jobQueueName = "string",
jobQueueArn = "string",
state = "ENABLED"|"DISABLED",
schedulingPolicyArn = "string",
status = "CREATING"|"UPDATING"|"DELETING"|"DELETED"|"VALID"|"INVALID",
statusReason = "string",
priority = 123,
computeEnvironmentOrder = list(
list(
order = 123,
computeEnvironment = "string"
)
),
tags = list(
"string"
),
jobStateTimeLimitActions = list(
list(
reason = "string",
state = "RUNNABLE",
maxTimeSeconds = 123,
action = "CANCEL"
)
)
)
),
nextToken = "string"
)