public class DeleteItem<T> extends Object implements TableOperation<T,DeleteItemRequest,DeleteItemResponse,T>, TransactableWriteOperation<T>, BatchableWriteOperation<T>
| Modifier and Type | Class and Description |
|---|---|
static class |
DeleteItem.Builder |
| Modifier and Type | Method and Description |
|---|---|
static DeleteItem.Builder |
builder() |
boolean |
equals(Object o) |
DeleteItemRequest |
generateRequest(TableSchema<T> tableSchema,
OperationContext operationContext,
MapperExtension mapperExtension)
This method generates the request that needs to be sent to a low level
DynamoDbClient. |
TransactWriteItem |
generateTransactWriteItem(TableSchema<T> tableSchema,
OperationContext operationContext,
MapperExtension mapperExtension) |
WriteRequest |
generateWriteRequest(TableSchema<T> tableSchema,
OperationContext operationContext,
MapperExtension mapperExtension) |
Key |
getKey() |
Function<DeleteItemRequest,DeleteItemResponse> |
getServiceCall(DynamoDbClient dynamoDbClient)
Provides a function for making the low level SDK call to DynamoDb.
|
int |
hashCode() |
static <T> DeleteItem<T> |
of(Key key) |
DeleteItem.Builder |
toBuilder() |
T |
transformResponse(DeleteItemResponse response,
TableSchema<T> tableSchema,
OperationContext operationContext,
MapperExtension mapperExtension)
Takes the response object returned by the actual DynamoDb call and maps it into a higher level abstracted
result object.
|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitexecuteOnPrimaryIndexexecutepublic static <T> DeleteItem<T> of(Key key)
public static DeleteItem.Builder builder()
public DeleteItem.Builder toBuilder()
public DeleteItemRequest generateRequest(TableSchema<T> tableSchema, OperationContext operationContext, MapperExtension mapperExtension)
CommonOperationDynamoDbClient.generateRequest in interface CommonOperation<T,DeleteItemRequest,DeleteItemResponse,T>tableSchema - A TableSchema that maps the table to a modelled object.operationContext - An object containing the context, or target, of the command execution.mapperExtension - A MapperExtension that may modify the request of this operation. A null value
here will result in no modifications.DynamoDbClient call to perform the operation.public T transformResponse(DeleteItemResponse response, TableSchema<T> tableSchema, OperationContext operationContext, MapperExtension mapperExtension)
CommonOperationtransformResponse in interface CommonOperation<T,DeleteItemRequest,DeleteItemResponse,T>response - The response object returned by the DynamoDb call for this operation.tableSchema - A TableSchema that maps the table to a modelled object.operationContext - An object containing the context, or target, of the command execution.mapperExtension - A MapperExtension that may modify the result of this operation. A null value
here will result in no modifications.public Function<DeleteItemRequest,DeleteItemResponse> getServiceCall(DynamoDbClient dynamoDbClient)
CommonOperationgetServiceCall in interface CommonOperation<T,DeleteItemRequest,DeleteItemResponse,T>dynamoDbClient - A low level DynamoDbClient to make the call against.public WriteRequest generateWriteRequest(TableSchema<T> tableSchema, OperationContext operationContext, MapperExtension mapperExtension)
generateWriteRequest in interface BatchableWriteOperation<T>public TransactWriteItem generateTransactWriteItem(TableSchema<T> tableSchema, OperationContext operationContext, MapperExtension mapperExtension)
generateTransactWriteItem in interface TransactableWriteOperation<T>public Key getKey()
Copyright © 2019. All rights reserved.