Amazon DynamoDB · Arazzo Workflow
Amazon DynamoDB Provision Table and Seed First Item
Version 1.0.0
Create a table, wait until ACTIVE, write a seed item, then read it back.
Provider
Workflows
provision-table-and-seed
Create a table, wait for ACTIVE, seed an item, and read it back.
Chains CreateTable, a DescribeTable poll loop, PutItem, and GetItem so a brand new table is provisioned and confirmed writable and readable in a single flow.
1
createTable
createTable
Create the table with the supplied schema and throughput.
2
waitForActive
describeTable
Poll DescribeTable until the table reports ACTIVE, looping back while it is still being created.
3
seedItem
putItem
Write the seed item into the freshly provisioned table.
4
readBack
getItem
Read the seed item back by its primary key to confirm it was written.