DynamoDB Get in Typescript (Guide w/ Code Examples)

Provided by Rafal Wilinski
To get an item from a DynamoDB table using TypeScript, you can use the DocumentClient class from the aws-sdk package.
import * as AWS from 'aws-sdk'; const dynamoDb = new AWS.DynamoDB.DocumentClient(); const params = { TableName: 'my-table', Key: { primaryKey: 'some-value', }, }; dynamoDb.get(params, (error, data) => { if (error) { console.error(error); } else { console.log(data.Item); } });
Similar Code Examples
- DynamoDB: Create if Not Exists
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Query Date Range
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB: Not Begins With
- DynamoDB: Query Ends With
- DynamoDB: BatchGetItem
- DynamoDB: Get By ID
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Query Greater Than
- DynamoDB: Batch Get
- DynamoDB: Like
- DynamoDB: Query Items
- DynamoDB: Query JSON
Better DynamoDB experience.
Start your 7-day free trial today
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase