Describe Consumable Resource
batch_describe_consumable_resource | R Documentation |
Returns a description of the specified consumable resource¶
Description¶
Returns a description of the specified consumable resource.
Usage¶
batch_describe_consumable_resource(consumableResource)
Arguments¶
consumableResource |
[required] The name or ARN of the consumable resource whose description will be returned. |
Value¶
A list with the following syntax:
list(
consumableResourceName = "string",
consumableResourceArn = "string",
totalQuantity = 123,
inUseQuantity = 123,
availableQuantity = 123,
resourceType = "string",
createdAt = 123,
tags = list(
"string"
)
)
Request syntax¶
svc$describe_consumable_resource(
consumableResource = "string"
)