DynamoDB Batch Update

前端 未结 6 671
[愿得一人]
[愿得一人] 2021-02-11 16:23

Is there any API in DynamoDB to update a batch of items? There is an API to write new items in batches (BatchWriteItem) and update single item using UpdateIte

6条回答
  •  误落风尘
    2021-02-11 17:02

    BatchWriteItem cannot update items. To update items, use the UpdateItem action. BatchWriteItem operation puts or deletes multiple items in one or more tables

    Reference: http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html

提交回复
热议问题