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: Query Count
- DynamoDB: Delete Table
- DynamoDB: Get Random Item
- DynamoDB: Get List Of Items
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: Attribute Not Null
- DynamoDB: Query Ends With
- DynamoDB: Like
- DynamoDB: Query Greater Than
- DynamoDB: Not Begins With
- DynamoDB: BatchGetItem
- DynamoDB: Get Last 10 Records
- DynamoDB: Not Between
- DynamoDB: Get Multiple Items
- DynamoDB: Get Unique Values
Better DynamoDB experience.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase