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: BatchGetItem
- DynamoDB: Get Multiple Items
- DynamoDB: Get Query
- DynamoDB: Create if Not Exists
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Not Begins With
- DynamoDB: Batch Get
- DynamoDB: Delete
- DynamoDB: Query Global Secondary Index in Nodejs
- DynamoDB: Get Last Inserted Item
- DynamoDB: Attribute Not Null
- DynamoDB: Get Last 10 Records
- DynamoDB: Query Items
- DynamoDB: Get List Of Items
Better DynamoDB experience.
First 7 days are on us. No strings attached.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase