One way to view DynamodB local data is to use the command line. You can, for example, make a scan from a table. Note that scan -command can be heavy.
aws dynamodb scan \ --table-name my_table_name --endpoint-url http:
Skip the --endpoint-url option if you are using a managed version of DynamoDB.
If you do not want to do a scan , get-item -command might work.
Teams:
source share