DynamoDB: Delete Multiple Items in Javascript (Guide w/ Code Examples)

Provided by Rafal Wilinski
To delete multiple items from a DynamoDB table using the JavaScript SDK, you can use the batchWrite
method. This method allows you to delete multiple items in a single call, which can be more efficient than making multiple individual delete
calls.
const AWS = require('aws-sdk'); const dynamoDb = new AWS.DynamoDB.DocumentClient(); const tableName = 'myTable'; const itemsToDelete = [ { DeleteRequest: { Key: { id: 'item1', }, }, }, { DeleteRequest: { Key: { id: 'item2', }, }, }, // ... add more items to delete here ]; const params = { RequestItems: { [tableName]: itemsToDelete, }, }; dynamoDb.batchWrite(params, (err, data) => { if (err) { console.error(err); } else { console.log(data); } });
Similar Code Examples
- DynamoDB: Create if Not Exists
- DynamoDB: Not Begins With
- DynamoDB: Delete
- DynamoDB: Query Ends With
- DynamoDB: Query Items
- DynamoDB: Batch Get
- DynamoDB: Attribute Not Null
- DynamoDB: Get By ID
- DynamoDB: Query Global Secondary Index in Nodejs
- DynamoDB: Bulk Insert
- DynamoDB: Query JSON
- DynamoDB: Query Group By
- DynamoDB: Query KeyConditionExpression
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Increment Counter
Tired of AWS Console? Try Dynobase.
Start your 7-day free trial today
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase