DynamoDB: Create if Not Exists (Guide w/ Code Examples)
Provided by Rafal Wilinski
You can use attribute_not_exists
method with the ConditionExpression
parameter to create an item only if it doesn't already exist. Here's an example of how to use it with the put
operation.
const AWS = require('aws-sdk'); const dynamoDb = new AWS.DynamoDB.DocumentClient(); const tableName = 'myTable'; const item = { id: '123', name: 'John' }; const params = { TableName: tableName, Item: item, ConditionExpression: 'attribute_not_exists(id)', }; dynamoDb.put(params).promise() .then(() => { console.log(Item ${item.id} created successfully ); }) .catch(err => { if (err.code === 'ConditionalCheckFailedException') { console.log(Item ${item.id} already exists ); } else { console.error(err); } });
Similar Code Examples
- DynamoDB: Batch Get
- DynamoDB: Attribute Not Null
- DynamoDB: Query Count
- DynamoDB: Delete
- DynamoDB: Increment Counter
- DynamoDB: Get Last 10 Records
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Get Multiple Items
- DynamoDB: Get Last Inserted Item
- DynamoDB: Not Between
- DynamoDB: Not Begins With
- DynamoDB: Get Random Item
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: BatchGetItem
- DynamoDB: Delete Table
Spend less time in the AWS console, use Dynobase.
Start your 7-day free trial today
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase