Uses of Class
com.amazonaws.services.dynamodbv2.model.UpdateItemRequest
Packages that use UpdateItemRequest
-
Uses of UpdateItemRequest in com.amazonaws.services.dynamodbv2
Methods in com.amazonaws.services.dynamodbv2 with parameters of type UpdateItemRequestModifier and TypeMethodDescriptionAbstractAmazonDynamoDB.updateItem
(UpdateItemRequest request) AmazonDynamoDB.updateItem
(UpdateItemRequest updateItemRequest) Edits an existing item's attributes, or adds a new item to the table if it does not already exist.AmazonDynamoDBClient.updateItem
(UpdateItemRequest updateItemRequest) Edits an existing item's attributes, or adds a new item to the table if it does not already exist.AbstractAmazonDynamoDBAsync.updateItemAsync
(UpdateItemRequest request) AbstractAmazonDynamoDBAsync.updateItemAsync
(UpdateItemRequest request, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) AmazonDynamoDBAsync.updateItemAsync
(UpdateItemRequest updateItemRequest) Edits an existing item's attributes, or adds a new item to the table if it does not already exist.AmazonDynamoDBAsync.updateItemAsync
(UpdateItemRequest updateItemRequest, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Edits an existing item's attributes, or adds a new item to the table if it does not already exist.AmazonDynamoDBAsyncClient.updateItemAsync
(UpdateItemRequest request) AmazonDynamoDBAsyncClient.updateItemAsync
(UpdateItemRequest request, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type UpdateItemRequestModifier and TypeMethodDescriptionAbstractAmazonDynamoDBAsync.updateItemAsync
(UpdateItemRequest request, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) AbstractAmazonDynamoDBAsync.updateItemAsync
(String tableName, Map<String, AttributeValue> key, Map<String, AttributeValueUpdate> attributeUpdates, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Simplified method form for invoking the UpdateItem operation with an AsyncHandler.AbstractAmazonDynamoDBAsync.updateItemAsync
(String tableName, Map<String, AttributeValue> key, Map<String, AttributeValueUpdate> attributeUpdates, String returnValues, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Simplified method form for invoking the UpdateItem operation with an AsyncHandler.AmazonDynamoDBAsync.updateItemAsync
(UpdateItemRequest updateItemRequest, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Edits an existing item's attributes, or adds a new item to the table if it does not already exist.AmazonDynamoDBAsync.updateItemAsync
(String tableName, Map<String, AttributeValue> key, Map<String, AttributeValueUpdate> attributeUpdates, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Simplified method form for invoking the UpdateItem operation with an AsyncHandler.AmazonDynamoDBAsync.updateItemAsync
(String tableName, Map<String, AttributeValue> key, Map<String, AttributeValueUpdate> attributeUpdates, String returnValues, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Simplified method form for invoking the UpdateItem operation with an AsyncHandler.AmazonDynamoDBAsyncClient.updateItemAsync
(UpdateItemRequest request, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) AmazonDynamoDBAsyncClient.updateItemAsync
(String tableName, Map<String, AttributeValue> key, Map<String, AttributeValueUpdate> attributeUpdates, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Simplified method form for invoking the UpdateItem operation with an AsyncHandler.AmazonDynamoDBAsyncClient.updateItemAsync
(String tableName, Map<String, AttributeValue> key, Map<String, AttributeValueUpdate> attributeUpdates, String returnValues, AsyncHandler<UpdateItemRequest, UpdateItemResult> asyncHandler) Simplified method form for invoking the UpdateItem operation with an AsyncHandler. -
Uses of UpdateItemRequest in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return UpdateItemRequestModifier and TypeMethodDescriptionUpdateItemRequest.addAttributeUpdatesEntry
(String key, AttributeValueUpdate value) UpdateItemRequest.addExpectedEntry
(String key, ExpectedAttributeValue value) UpdateItemRequest.addExpressionAttributeNamesEntry
(String key, String value) UpdateItemRequest.addExpressionAttributeValuesEntry
(String key, AttributeValue value) UpdateItemRequest.addKeyEntry
(String key, AttributeValue value) UpdateItemRequest.clearAttributeUpdatesEntries()
Removes all the entries added into AttributeUpdates.UpdateItemRequest.clearExpectedEntries()
Removes all the entries added into Expected.UpdateItemRequest.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.UpdateItemRequest.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.UpdateItemRequest.clearKeyEntries()
Removes all the entries added into Key.UpdateItemRequest.clone()
UpdateItemRequest.withAttributeUpdates
(Map<String, AttributeValueUpdate> attributeUpdates) UpdateItemRequest.withConditionalOperator
(ConditionalOperator conditionalOperator) UpdateItemRequest.withConditionalOperator
(String conditionalOperator) UpdateItemRequest.withConditionExpression
(String conditionExpression) A condition that must be satisfied in order for a conditional update to succeed.UpdateItemRequest.withExpected
(Map<String, ExpectedAttributeValue> expected) UpdateItemRequest.withExpressionAttributeNames
(Map<String, String> expressionAttributeNames) One or more substitution tokens for attribute names in an expression.UpdateItemRequest.withExpressionAttributeValues
(Map<String, AttributeValue> expressionAttributeValues) One or more values that can be substituted in an expression.UpdateItemRequest.withKey
(Map.Entry<String, AttributeValue> hashKey, Map.Entry<String, AttributeValue> rangeKey) Set the hash and range key attributes of the item.UpdateItemRequest.withKey
(Map<String, AttributeValue> key) The primary key of the item to be updated.UpdateItemRequest.withReturnConsumedCapacity
(ReturnConsumedCapacity returnConsumedCapacity) UpdateItemRequest.withReturnConsumedCapacity
(String returnConsumedCapacity) UpdateItemRequest.withReturnItemCollectionMetrics
(ReturnItemCollectionMetrics returnItemCollectionMetrics) Determines whether item collection metrics are returned.UpdateItemRequest.withReturnItemCollectionMetrics
(String returnItemCollectionMetrics) Determines whether item collection metrics are returned.UpdateItemRequest.withReturnValues
(ReturnValue returnValues) Use ReturnValues if you want to get the item attributes as they appeared either before or after they were updated.UpdateItemRequest.withReturnValues
(String returnValues) Use ReturnValues if you want to get the item attributes as they appeared either before or after they were updated.UpdateItemRequest.withTableName
(String tableName) The name of the table containing the item to update.UpdateItemRequest.withUpdateExpression
(String updateExpression) An expression that defines one or more attributes to be updated, the action to be performed on them, and new value(s) for them.