DynamoDB BatchWriteItem in Typescript (Guide w/ Code Examples)
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); } }
Similar Code Examples
- DynamoDB: Get Random Item
- DynamoDB: Attribute Not Null
- DynamoDB: Query Items
- DynamoDB: Get Table
- DynamoDB: Query Date Range
- DynamoDB: Get Query
- DynamoDB: Query JSON
- DynamoDB: Not Between
- DynamoDB: Query Ends With
- DynamoDB: Batch Get
- DynamoDB: Bulk Insert
- DynamoDB: Query Greater Than
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB: Query Count
- DynamoDB: Get Multiple Items
Tired of AWS Console? Try Dynobase.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase