Uses of Class
software.amazon.awssdk.enhanced.dynamodb.model.PutItemEnhancedRequest.Builder
-
-
Uses of PutItemEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb
Method parameters in software.amazon.awssdk.enhanced.dynamodb with type arguments of type PutItemEnhancedRequest.Builder Modifier and Type Method Description default CompletableFuture<Void>
DynamoDbAsyncTable. putItem(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
Puts a single item in the mapped table.default void
DynamoDbTable. putItem(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
Puts a single item in the mapped table.default CompletableFuture<PutItemEnhancedResponse<T>>
DynamoDbAsyncTable. putItemWithResponse(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
Puts a single item in the mapped table.default PutItemEnhancedResponse<T>
DynamoDbTable. putItemWithResponse(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
Puts a single item in the mapped table. -
Uses of PutItemEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.internal.client
Method parameters in software.amazon.awssdk.enhanced.dynamodb.internal.client with type arguments of type PutItemEnhancedRequest.Builder Modifier and Type Method Description CompletableFuture<Void>
DefaultDynamoDbAsyncTable. putItem(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
void
DefaultDynamoDbTable. putItem(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
CompletableFuture<PutItemEnhancedResponse<T>>
DefaultDynamoDbAsyncTable. putItemWithResponse(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
PutItemEnhancedResponse<T>
DefaultDynamoDbTable. putItemWithResponse(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
-
Uses of PutItemEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return PutItemEnhancedRequest.Builder Modifier and Type Method Description static <T> PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest. builder(Class<? extends T> itemClass)
Creates a newly initialized builder for the request object.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. conditionExpression(Expression conditionExpression)
Defines a logical expression on an item's attribute values which, if evaluating to true, will allow the put operation to succeed.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. item(T item)
Sets the item to write to DynamoDb.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnConsumedCapacity(String returnConsumedCapacity)
Whether to return the capacity consumed by this operation.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
Whether to return the capacity consumed by this operation.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnItemCollectionMetrics(String returnItemCollectionMetrics)
Whether to return the item collection metrics.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnItemCollectionMetrics(ReturnItemCollectionMetrics returnItemCollectionMetrics)
Whether to return the item collection metrics.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnValues(String returnValues)
Whether to return the values of the item before this request.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnValues(ReturnValue returnValues)
Whether to return the values of the item before this request.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnValuesOnConditionCheckFailure(String returnValuesOnConditionCheckFailure)
Whether to return the item on condition check failure.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest.Builder. returnValuesOnConditionCheckFailure(ReturnValuesOnConditionCheckFailure returnValuesOnConditionCheckFailure)
Whether to return the item on condition check failure.PutItemEnhancedRequest.Builder<T>
PutItemEnhancedRequest. toBuilder()
Returns a builder initialized with all existing values on the request object.Method parameters in software.amazon.awssdk.enhanced.dynamodb.model with type arguments of type PutItemEnhancedRequest.Builder Modifier and Type Method Description WriteBatch.Builder<T>
WriteBatch.Builder. addPutItem(Consumer<PutItemEnhancedRequest.Builder<T>> requestConsumer)
Adds aPutItemEnhancedRequest
to the builder, this request should contain the item to be written.
-