Updates a consumable resource.
See https://www.paws-r-sdk.com/docs/batch_update_consumable_resource/ for full documentation.
Usage
batch_update_consumable_resource(
consumableResource,
operation = NULL,
quantity = NULL,
clientToken = NULL
)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:
SETSets the quantity of the resource to the value specified by the
quantityparameter.ADDIncreases the quantity of the resource by the value specified by the
quantityparameter.REMOVEReduces the quantity of the resource by the value specified by the
quantityparameter.
- quantity
The change in the total quantity of the consumable resource. The
operationparameter determines whether the value specified here will be the new total quantity, or the amount by which the total quantity will be increased or reduced. Must be a non-negative value.- clientToken
If this parameter is specified and two update requests with identical payloads and
clientTokens are received, these requests are considered the same request. Both requests will succeed, but the update will only happen once. AclientTokenis valid for 8 hours.