Interface ExecuteTransactionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ExecuteTransactionResponse.Builder,ExecuteTransactionResponse>,DynamoDbResponse.Builder,SdkBuilder<ExecuteTransactionResponse.Builder,ExecuteTransactionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ExecuteTransactionResponse
@Mutable @NotThreadSafe public static interface ExecuteTransactionResponse.Builder extends DynamoDbResponse.Builder, SdkPojo, CopyableBuilder<ExecuteTransactionResponse.Builder,ExecuteTransactionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecuteTransactionResponse.BuilderconsumedCapacity(Collection<ConsumedCapacity> consumedCapacity)The capacity units consumed by the entire operation.ExecuteTransactionResponse.BuilderconsumedCapacity(Consumer<ConsumedCapacity.Builder>... consumedCapacity)The capacity units consumed by the entire operation.ExecuteTransactionResponse.BuilderconsumedCapacity(ConsumedCapacity... consumedCapacity)The capacity units consumed by the entire operation.ExecuteTransactionResponse.Builderresponses(Collection<ItemResponse> responses)The response to a PartiQL transaction.ExecuteTransactionResponse.Builderresponses(Consumer<ItemResponse.Builder>... responses)The response to a PartiQL transaction.ExecuteTransactionResponse.Builderresponses(ItemResponse... responses)The response to a PartiQL transaction.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
responses
ExecuteTransactionResponse.Builder responses(Collection<ItemResponse> responses)
The response to a PartiQL transaction.
- Parameters:
responses- The response to a PartiQL transaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
responses
ExecuteTransactionResponse.Builder responses(ItemResponse... responses)
The response to a PartiQL transaction.
- Parameters:
responses- The response to a PartiQL transaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
responses
ExecuteTransactionResponse.Builder responses(Consumer<ItemResponse.Builder>... responses)
The response to a PartiQL transaction.
This is a convenience method that creates an instance of theItemResponse.Builderavoiding the need to create one manually viaItemResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#responses(List.) - Parameters:
responses- a consumer that will call methods onItemResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#responses(java.util.Collection)
-
consumedCapacity
ExecuteTransactionResponse.Builder consumedCapacity(Collection<ConsumedCapacity> consumedCapacity)
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
- Parameters:
consumedCapacity- The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consumedCapacity
ExecuteTransactionResponse.Builder consumedCapacity(ConsumedCapacity... consumedCapacity)
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
- Parameters:
consumedCapacity- The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consumedCapacity
ExecuteTransactionResponse.Builder consumedCapacity(Consumer<ConsumedCapacity.Builder>... consumedCapacity)
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
This is a convenience method that creates an instance of theConsumedCapacity.Builderavoiding the need to create one manually viaConsumedCapacity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#consumedCapacity(List.) - Parameters:
consumedCapacity- a consumer that will call methods onConsumedCapacity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#consumedCapacity(java.util.Collection)
-
-