Interface UpdateConsumableResourceRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,BatchRequest.Builder
,Buildable
,CopyableBuilder<UpdateConsumableResourceRequest.Builder,
,UpdateConsumableResourceRequest> SdkBuilder<UpdateConsumableResourceRequest.Builder,
,UpdateConsumableResourceRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateConsumableResourceRequest
-
Method Summary
Modifier and TypeMethodDescriptionclientToken
(String clientToken) If this parameter is specified and two update requests with identical payloads andclientToken
s are received, these requests are considered the same request and the second request is rejected.consumableResource
(String consumableResource) The name or ARN of the consumable resource to be updated.Indicates how the quantity of the consumable resource will be updated.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.The change in the total quantity of the consumable resource.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.services.batch.model.BatchRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
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
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
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. Theoperation
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
If this parameter is specified and two update requests with identical payloads and
clientToken
s are received, these requests are considered the same request and the second request is rejected. AclientToken
is valid for 8 hours or until one hour after the consumable resource is deleted, whichever is less.- Parameters:
clientToken
- If this parameter is specified and two update requests with identical payloads andclientToken
s are received, these requests are considered the same request and the second request is rejected. AclientToken
is valid for 8 hours or until one hour after the consumable resource is deleted, whichever is less.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateConsumableResourceRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateConsumableResourceRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-