dynobase-icon
Dynobase

DynamoDB: Delete (Guide w/ Code Examples)

Rafal Wilinski

Provided by Rafal Wilinski

To delete an item from a DynamoDB table, you can use the delete method of the DynamoDB DocumentClient.

const AWS = require('aws-sdk'); const dynamoDb = new AWS.DynamoDB.DocumentClient(); const tableName = 'myTable'; const key = { id: '123' }; const params = { TableName: tableName, Key: key, }; dynamoDb.delete(params).promise() .then(() => { console.log(Item with id ${key.id} deleted successfully ); }) .catch(err => { console.error(err); });

Spend less time in the AWS console, use Dynobase.

First 7 days are on us. No strings attached.

Product Features

Download
/
Changelog
/
Pricing
/
Member Portal
/
Privacy
/
EULA
/
Twitter
© 2024 Dynobase
+
Tired of AWS Console?
Try Dynobase to accelerate your DynamoDB workflow. Start your 7-day free trial today.