List Quota Shares
| batch_list_quota_shares | R Documentation |
Returns a list of Batch quota shares associated with a job queue¶
Description¶
Returns a list of Batch quota shares associated with a job queue.
Usage¶
batch_list_quota_shares(jobQueue, maxResults, nextToken)
Arguments¶
jobQueue |
[required] The name or full Amazon Resource Name (ARN) of the job queue used to list quota shares. |
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(
quotaShares = list(
list(
quotaShareName = "string",
quotaShareArn = "string",
jobQueueArn = "string",
capacityLimits = list(
list(
maxCapacity = 123,
capacityUnit = "string"
)
),
resourceSharingConfiguration = list(
strategy = "RESERVE"|"LEND"|"LEND_AND_BORROW",
borrowLimit = 123
),
preemptionConfiguration = list(
inSharePreemption = "ENABLED"|"DISABLED"
),
state = "ENABLED"|"DISABLED",
status = "CREATING"|"VALID"|"INVALID"|"UPDATING"|"DELETING"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_quota_shares(
jobQueue = "string",
maxResults = 123,
nextToken = "string"
)