dynobase-icon
Dynobase

DynamoDB BatchWriteItem in Typescript (Guide w/ Code Examples)

Rafal Wilinski

Provided by Rafal Wilinski

The batchWriteItem method in AWS JavaScript SDK can be used to write multiple items to one or more tables in a single request. In TypeScript, you can use the aws-sdk library to interact with DynamoDB. Here's an example of how you can use the batchWriteItem method in a TypeScript function:

import * as AWS from 'aws-sdk'; const dynamoDb = new AWS.DynamoDB.DocumentClient(); export async function batchWriteItems(items: any[], tableName: string) { const params = { RequestItems: { [tableName]: items.map((item: any) => ({ PutRequest: { Item: item } })) } }; try { const data = await dynamoDb.batchWrite(params).promise(); console.log(data); return data; } catch (err) { console.log(err); throw new Error(err); } }

Dynobase is a Professional GUI Client for DynamoDB

Start your 7-day free trial today

Product Features

Download
/
Changelog
/
Pricing
/
Member Portal
/
Privacy
/
EULA
/
Twitter
© 2024 Dynobase
+
Login to the AWS Console less.
Try Dynobase to accelerate your DynamoDB workflow. Start your 7-day free trial today.