DynamoDB Operations using the AWS CLI: Examples

Last updated:

WIP Alert This is a work in progress. Current information is correct but more content will probably be added in the future.

Describe a table

$ aws dynamodb describe-table --table-name MyTableName

Select all items in a DynamoDB table

$ aws dynamodb scan --table-name MyTableName

Delete all items on a DynamoDB table

TODO

Dialogue & Discussion