Amazon DynamoDB · Arazzo Workflow
Amazon DynamoDB Scan With Pagination
Version 1.0.0
Scan a table and page through results until the table is exhausted.
Provider
Workflows
scan-paginate
Scan a table and follow LastEvaluatedKey until the scan is complete.
Runs an initial Scan, then branches: while a LastEvaluatedKey is returned it continues the scan from that key, and when none is returned it ends.
1
scanFirstPage
scan
Run the initial scan over the table.
2
scanNextPage
scan
Continue the scan from the previous page's LastEvaluatedKey, looping until DynamoDB returns no further LastEvaluatedKey.