Delete Record in DynamoDB Using Java (Guide w/ Code Examples)
Provided by Rafal Wilinski
In DynamoDB, the item key and table name are all needed to delete an item. Additionally, it is specifically instructed to use a conditional expression, which will be required to prevent deleting the incorrect items.
public static void deleteDymamoDBItem(DynamoDbClient ddb, String tableName, String key, String keyVal) { HashMap<String,AttributeValue> keyToGet = new HashMap<>(); keyToGet.put(key, AttributeValue.builder() .s(keyVal) .build()); DeleteItemRequest deleteReq = DeleteItemRequest.builder() .tableName(tableName) .key(keyToGet) .build(); try { ddb.deleteItem(deleteReq); } catch (DynamoDbException e) { System.err.println(e.getMessage()); System.exit(1); } }
Similar Code Examples
- Update Item in DynamoDB Using Java
- Update Multiple Attributes in DynamoDB Using Java
- Delete All Using DynamoDB Mapper
- Get in DynamoDB Using Java
- Insert in DynamoDB Using Java
- Conditional Update in DynamoDB Using Java
- Batch Get in DynamoDB Using Java
- Batch Load Using DynamoDB Mapper
- Delete in DynamoDB Using Java
- Query Global Secondary Index in DynamoDB Using Java
- Delete by Hashkey Using DynamoDB Mapper
- Batch Insert in DynamoDB Using Java
- Batch Write Item in DynamoDB Using Java
- Batch Put Item in DynamoDB Using Java
- Query Index in DynamoDB Using Java
Login to the AWS Console less. Use Dynobase.
First 7 days are on us. No strings attached.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase