Complete the command to list all DynamoDB tables in your AWS account.
aws dynamodb [1]The list-tables command shows all DynamoDB tables in your account.
Complete the command to create a DynamoDB table named 'Books' with a primary key 'ISBN' of type string.
aws dynamodb create-table --table-name Books --attribute-definitions AttributeName=ISBN,AttributeType=[1] --key-schema AttributeName=ISBN,KeyType=HASH --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5
The attribute type S stands for string, which is used for the ISBN key.
Fix the error in the command to delete a DynamoDB table named 'Users'.
aws dynamodb [1] --table-name UsersThe correct command to delete a table is delete-table.
Fill both blanks to update the provisioned throughput of the 'Orders' table to 10 read and 5 write units.
aws dynamodb update-table --table-name Orders --provisioned-throughput ReadCapacityUnits=[1],WriteCapacityUnits=[2]
Set ReadCapacityUnits to 10 and WriteCapacityUnits to 5 as required.
Fill all three blanks to put an item with 'UserId' 123 and 'Name' 'Alice' into the 'Customers' table.
aws dynamodb put-item --table-name Customers --item '{"UserId": {"[1]": "[2]"}, "Name": {"[3]": "Alice"}}'
UserId is a number, so type 'N' and value 123. Name is a string, so type 'S'.