dynobase-icon
Dynobase

DynamoDB Get in Typescript (Guide w/ Code Examples)

Rafal Wilinski

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); } });

Tired of AWS Console? Try Dynobase.

Try 7-day free trial. No strings attached.

Product Features

Download
/
Changelog
/
Pricing
/
Member Portal
/
Privacy
/
EULA
/
Twitter
© 2024 Dynobase
+
Dynobase - DynamoDB Swiss Army Knife
Try Dynobase to accelerate your DynamoDB workflow. Start your 7-day free trial today.