# List all the tables using a profile aws dynamodb list-tables --profile | jq # Get all item in a table using a profile (expensive) aws dynamodb scan --table-name --profile | jq # Get an specific item based on id using a profile aws dynamodb get-item --key '{"id":{"S":"009871"}}' --table-name --profile | jq # Create an item using a profile aws dynamodb put-item --table-name --item file://item_example.json --profile | jq # Retrieve items as batch aws dynamodb batch-write-item --request-item file://batch_write_items.json | jq