AWS - DynamoDB
Given this AWS CLI command:
What will be the provisioned read capacity units for the table?
aws dynamodb create-table --table-name Orders --attribute-definitions AttributeName=OrderId,AttributeType=S --key-schema AttributeName=OrderId,KeyType=HASH --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5
What will be the provisioned read capacity units for the table?
