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¶
batch_describe_job_queues(jobQueues, maxResults, nextToken)
Arguments¶
jobQueues |
A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries. |
maxResults |
The maximum number of results returned by
|
nextToken |
The 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"
)
Request syntax¶
svc$describe_job_queues(
jobQueues = list(
"string"
),
maxResults = 123,
nextToken = "string"
)
Examples¶
## Not run:
# This example describes the HighPriority job queue.
svc$describe_job_queues(
jobQueues = list(
"HighPriority"
)
)
## End(Not run)