how to return items in a dynamodb on aws-cli
If you want to dump the whole table, just use
aws dynamodb scan --table-name Users
Try this format:
aws dynamodb get-item --table-name Users --key '{"Username": {"S": "test"}}'
If you want to dump the whole table, just use
aws dynamodb scan --table-name Users
Try this format:
aws dynamodb get-item --table-name Users --key '{"Username": {"S": "test"}}'