Amazon DynamoDB · Arazzo Workflow
Amazon DynamoDB Transactional Write Then Transactional Read
Version 1.0.0
Atomically write a group of items, then atomically read them back.
Provider
Workflows
transaction-write-then-read
Run a write transaction, then confirm it with a read transaction.
Submits a TransactWriteItems request with the supplied actions and an idempotency token, then issues a TransactGetItems request to read the affected items in a single atomic operation.
1
writeTransaction
transactWriteItems
Atomically apply the write transaction. All actions succeed together or the entire transaction is rolled back.
2
readTransaction
transactGetItems
Atomically read the affected items back to confirm the transaction's committed state.