Scripts for managing DynamoDB tables and items.
python services/dynamodb/create_table.py --table-name Users --partition-key userId
python services/dynamodb/create_table.py --table-name Orders --partition-key orderId --sort-key createdAtpython services/dynamodb/list_tables.pypython services/dynamodb/put_item.py --table-name Users --item '{"userId": {"S": "u1"}, "name": {"S": "Alice"}}'python services/dynamodb/get_item.py --table-name Users --key '{"userId": {"S": "u1"}}'python services/dynamodb/delete_table.py --table-name Users
python services/dynamodb/delete_table.py --table-name Users --dry-run