Bird
0
0

Given this AWS CLI command:

medium📝 Predict Output Q4 of 15
AWS - DynamoDB
Given this AWS CLI command:
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?
A10
B1
C5
D0
Step-by-Step Solution
Solution:
  1. Step 1: Identify provisioned throughput parameters

    The command sets ReadCapacityUnits=5 and WriteCapacityUnits=5 explicitly.
  2. Step 2: Determine read capacity units value

    The read capacity units are set to 5 as per the command.
  3. Final Answer:

    5 -> Option C
  4. Quick Check:

    Read capacity units = 5 [OK]
Quick Trick: Provisioned throughput values come from ReadCapacityUnits parameter [OK]
Common Mistakes:
  • Confusing read and write units
  • Assuming default values
  • Ignoring provisioned throughput

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes