Update Attribute in DynamoDB Using Java (Guide w/ Code Examples)
Provided by Rafal Wilinski
You can use the UpdateItemRequest
class to perform update an item attribute in DynamoDB. When updating, ensure that you provide the Table Name, Key and the Update Expression to execute during the update.
The following code updates the attributeName
attribute of the item with an id
attribute of 123 in the MyTable
table. The UpdateItemRequest
class is used to specify the update expression, which is set attributeName = :val
.
import com.amazonaws.services.dynamodbv2.AmazonDynamoDB; import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClientBuilder; import com.amazonaws.services.dynamodbv2.model.AttributeValue; import com.amazonaws.services.dynamodbv2.model.UpdateItemRequest; import com.amazonaws.services.dynamodbv2.model.UpdateItemResult; public class UpdateAttributeExample { public static void main(String[] args) { AmazonDynamoDB client = AmazonDynamoDBClientBuilder.defaultClient(); Map<String, AttributeValue> key = new HashMap<>(); key.put("id", new AttributeValue().withN("123")); Map<String, AttributeValue> expressionAttributeValues = new HashMap<>(); expressionAttributeValues.put(":val", new AttributeValue().withS("Jane")); UpdateItemRequest updateItemRequest = new UpdateItemRequest() .withTableName("MyTable") .withKey(key) .withUpdateExpression("set firstName = :val") .withExpressionAttributeValues(expressionAttributeValues); UpdateItemResult result = client.updateItem(updateItemRequest); System.out.println(result); } }
Similar Code Examples
- Batch Write Using DynamoDB Mapper
- Query Date Range in DynamoDB Using Java
- GetItem in DynamoDB Using Java
- Conditional Update in DynamoDB Using Java
- Batch Get in DynamoDB Using Java
- Update Expression in DynamoDB Using Java
- Batch Insert in DynamoDB Using Java
- Remove Attribute in DynamoDB Using Java
- Query Global Secondary Index in DynamoDB Using Java
- Update Multiple Items in DynamoDB Using Java
- Delete Record in DynamoDB Using Java
- Get All Items from DynamoDB Using Java
- Query Index in DynamoDB Using Java
- Batch Delete Using DynamoDB Mapper
- Query Local Secondary Index in DynamoDB Using Java
Better DynamoDB experience.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase