Class PutItemOperation<T>
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.internal.operations.PutItemOperation<T>
-
- All Implemented Interfaces:
BatchableWriteOperation<T>,CommonOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>,TableOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>,TransactableWriteOperation<T>
public class PutItemOperation<T> extends Object implements BatchableWriteOperation<T>, TransactableWriteOperation<T>, TableOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Function<PutItemRequest,CompletableFuture<PutItemResponse>>asyncServiceCall(DynamoDbAsyncClient dynamoDbAsyncClient)Provides a function for making the low level non-blocking asynchronous SDK call to DynamoDb.static <T> PutItemOperation<T>create(PutItemEnhancedRequest<T> request)static <T> PutItemOperation<T>create(TransactPutItemEnhancedRequest<T> request)PutItemRequestgenerateRequest(TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension extension)This method generates the request that needs to be sent to a low levelDynamoDbClient.TransactWriteItemgenerateTransactWriteItem(TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension dynamoDbEnhancedClientExtension)WriteRequestgenerateWriteRequest(TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension extension)OperationNameoperationName()The type, or name, of the operation.Function<PutItemRequest,PutItemResponse>serviceCall(DynamoDbClient dynamoDbClient)Provides a function for making the low level synchronous SDK call to DynamoDb.PutItemEnhancedResponse<T>transformResponse(PutItemResponse response, TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension extension)Takes the response object returned by the actual DynamoDb call and maps it into a higher level abstracted result object.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.enhanced.dynamodb.internal.operations.CommonOperation
execute, executeAsync
-
Methods inherited from interface software.amazon.awssdk.enhanced.dynamodb.internal.operations.TableOperation
executeOnPrimaryIndex, executeOnPrimaryIndexAsync
-
-
-
-
Method Detail
-
create
public static <T> PutItemOperation<T> create(PutItemEnhancedRequest<T> request)
-
create
public static <T> PutItemOperation<T> create(TransactPutItemEnhancedRequest<T> request)
-
operationName
public OperationName operationName()
Description copied from interface:CommonOperationThe type, or name, of the operation.- Specified by:
operationNamein interfaceCommonOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>
-
generateRequest
public PutItemRequest generateRequest(TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension extension)
Description copied from interface:CommonOperationThis method generates the request that needs to be sent to a low levelDynamoDbClient.- Specified by:
generateRequestin interfaceCommonOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>- Parameters:
tableSchema- ATableSchemathat maps the table to a modelled object.operationContext- An object containing the context, or target, of the command execution.extension- ADynamoDbEnhancedClientExtensionthat may modify the request of this operation. A null value here will result in no modifications.- Returns:
- A request that can be used as an argument to a
DynamoDbClientcall to perform the operation.
-
transformResponse
public PutItemEnhancedResponse<T> transformResponse(PutItemResponse response, TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension extension)
Description copied from interface:CommonOperationTakes the response object returned by the actual DynamoDb call and maps it into a higher level abstracted result object.- Specified by:
transformResponsein interfaceCommonOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>- Parameters:
response- The response object returned by the DynamoDb call for this operation.tableSchema- ATableSchemathat maps the table to a modelled object.operationContext- An object containing the context, or target, of the command execution.extension- ADynamoDbEnhancedClientExtensionthat may modify the result of this operation. A null value here will result in no modifications.- Returns:
- A high level result object as specified by the implementation of this operation.
-
serviceCall
public Function<PutItemRequest,PutItemResponse> serviceCall(DynamoDbClient dynamoDbClient)
Description copied from interface:CommonOperationProvides a function for making the low level synchronous SDK call to DynamoDb.- Specified by:
serviceCallin interfaceCommonOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>- Parameters:
dynamoDbClient- A low levelDynamoDbClientto make the call against.- Returns:
- A function that calls DynamoDb with a provided request object and returns the response object.
-
asyncServiceCall
public Function<PutItemRequest,CompletableFuture<PutItemResponse>> asyncServiceCall(DynamoDbAsyncClient dynamoDbAsyncClient)
Description copied from interface:CommonOperationProvides a function for making the low level non-blocking asynchronous SDK call to DynamoDb.- Specified by:
asyncServiceCallin interfaceCommonOperation<T,PutItemRequest,PutItemResponse,PutItemEnhancedResponse<T>>- Parameters:
dynamoDbAsyncClient- A low levelDynamoDbAsyncClientto make the call against.- Returns:
- A function that calls DynamoDb with a provided request object and returns the response object.
-
generateWriteRequest
public WriteRequest generateWriteRequest(TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension extension)
- Specified by:
generateWriteRequestin interfaceBatchableWriteOperation<T>
-
generateTransactWriteItem
public TransactWriteItem generateTransactWriteItem(TableSchema<T> tableSchema, OperationContext operationContext, DynamoDbEnhancedClientExtension dynamoDbEnhancedClientExtension)
- Specified by:
generateTransactWriteItemin interfaceTransactableWriteOperation<T>
-
-