How to update multiple items in a DynamoDB table at once

前端 未结 4 704
迷失自我
迷失自我 2020-12-14 16:02

I\'m using DynamoDB and I need to update a specific attribute on multiple records. Writing my requirement in pseudo-language I would like to do an update that says \"update

4条回答
  •  离开以前
    2020-12-14 16:36

    You can use TransactWriteItems action to update multiple records in DynamoDB table.

    The official documentation available here, also you can see TransactWriteItems javascript/nodejs example here.

提交回复
热议问题