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: Get All Items
- DynamoDB: Query Items
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Bulk Insert
- DynamoDB: Query Greater Than
- DynamoDB: Like
- DynamoDB: Delete Table
- DynamoDB Get in Typescript
- DynamoDB: Query JSON
- DynamoDB: Get By ID
- DynamoDB: Get Random Item
- DynamoDB: BatchGetItem
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: Get Last 10 Records
- DynamoDB: Query Global Secondary Index in Nodejs
Better DynamoDB experience.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase