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: Attribute Not Null
- DynamoDB: Get Multiple Items
- DynamoDB: Query Group By
- DynamoDB: Batch Get
- DynamoDB: Query Items
- DynamoDB: Get By ID
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: Delete Table
- DynamoDB: Get Last Inserted Item
- DynamoDB: Get Unique Values
- DynamoDB: BatchGetItem
- DynamoDB: Query Count
- DynamoDB: Bulk Insert
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: GetItem
Dynobase is a Professional GUI Client for DynamoDB
Start your 7-day free trial today
Product Features
DynamoDB Tools
DynamoDB Info
© 2026 Dynobase