Interface UpdateConsumableResourceRequest.Builder

    • Method Detail

      • consumableResource

        UpdateConsumableResourceRequest.Builder consumableResource​(String consumableResource)

        The name or ARN of the consumable resource to be updated.

        Parameters:
        consumableResource - The name or ARN of the consumable resource to be updated.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • operation

        UpdateConsumableResourceRequest.Builder operation​(String operation)

        Indicates how the quantity of the consumable resource will be updated. Must be one of:

        • SET

          Sets the quantity of the resource to the value specified by the quantity parameter.

        • ADD

          Increases the quantity of the resource by the value specified by the quantity parameter.

        • REMOVE

          Reduces the quantity of the resource by the value specified by the quantity parameter.

        Parameters:
        operation - Indicates how the quantity of the consumable resource will be updated. Must be one of:

        • SET

          Sets the quantity of the resource to the value specified by the quantity parameter.

        • ADD

          Increases the quantity of the resource by the value specified by the quantity parameter.

        • REMOVE

          Reduces the quantity of the resource by the value specified by the quantity parameter.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • quantity

        UpdateConsumableResourceRequest.Builder quantity​(Long quantity)

        The change in the total quantity of the consumable resource. The operation parameter 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.

        Parameters:
        quantity - The change in the total quantity of the consumable resource. The operation parameter 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • clientToken

        UpdateConsumableResourceRequest.Builder clientToken​(String 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. A clientToken is valid for 8 hours.

        Parameters:
        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. A clientToken is valid for 8 hours.
        Returns:
        Returns a reference to this object so that method calls can be chained together.