Update Consumable Resource
batch_update_consumable_resource | R Documentation |
Updates a consumable resource¶
Description¶
Updates a consumable resource.
Usage¶
batch_update_consumable_resource(consumableResource, operation,
quantity, clientToken)
Arguments¶
consumableResource |
[required] The name or ARN of the consumable resource to be updated. |
operation |
Indicates how the quantity of the consumable resource will be updated. Must be one of:
|
quantity |
The change in the total quantity of the consumable resource. The
|
clientToken |
If this parameter is specified and two update requests with
identical payloads and |
Value¶
A list with the following syntax:
list(
consumableResourceName = "string",
consumableResourceArn = "string",
totalQuantity = 123
)
Request syntax¶
svc$update_consumable_resource(
consumableResource = "string",
operation = "string",
quantity = 123,
clientToken = "string"
)