List Consumable Resources
batch_list_consumable_resources | R Documentation |
Returns a list of Batch consumable resources¶
Description¶
Returns a list of Batch consumable resources.
Usage¶
batch_list_consumable_resources(filters, maxResults, nextToken)
Arguments¶
filters |
The filters to apply to the consumable resource list query. If used, only those consumable resources that match the filter are listed. Filter names and values can be:
|
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(
consumableResources = list(
list(
consumableResourceArn = "string",
consumableResourceName = "string",
totalQuantity = 123,
inUseQuantity = 123,
resourceType = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_consumable_resources(
filters = list(
list(
name = "string",
values = list(
"string"
)
)
),
maxResults = 123,
nextToken = "string"
)