Modifier and Type | Method and Description |
---|---|
default T |
DynamoDbTable.updateItem(Consumer<UpdateItemEnhancedRequest.Builder<T>> requestConsumer)
Updates an item in the mapped table, or adds it if it doesn't exist.
|
default CompletableFuture<T> |
DynamoDbAsyncTable.updateItem(Consumer<UpdateItemEnhancedRequest.Builder<T>> requestConsumer)
Updates an item in the mapped table, or adds it if it doesn't exist.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<T> |
DefaultDynamoDbAsyncTable.updateItem(Consumer<UpdateItemEnhancedRequest.Builder<T>> requestConsumer) |
T |
DefaultDynamoDbTable.updateItem(Consumer<UpdateItemEnhancedRequest.Builder<T>> requestConsumer) |
Modifier and Type | Method and Description |
---|---|
static <T> UpdateItemEnhancedRequest.Builder<T> |
UpdateItemEnhancedRequest.builder(Class<? extends T> itemClass)
Creates a newly initialized builder for the request object.
|
UpdateItemEnhancedRequest.Builder<T> |
UpdateItemEnhancedRequest.Builder.conditionExpression(Expression conditionExpression)
Defines a logical expression on an item's attribute values which, if evaluating to true,
will allow the update operation to succeed.
|
UpdateItemEnhancedRequest.Builder<T> |
UpdateItemEnhancedRequest.Builder.ignoreNulls(Boolean ignoreNulls)
Sets if the update operation should ignore attributes with null values.
|
UpdateItemEnhancedRequest.Builder<T> |
UpdateItemEnhancedRequest.Builder.item(T item)
Sets the item to write to DynamoDb.
|
UpdateItemEnhancedRequest.Builder<T> |
UpdateItemEnhancedRequest.toBuilder()
Returns a builder initialized with all existing values on the request object.
|
Copyright © 2020. All rights reserved.