Bird
0
0

Which of the following statements about DynamoDB burst capacity is syntactically correct?

easy📝 Syntax Q12 of 15
DynamoDB - Access Patterns and Query Optimization
Which of the following statements about DynamoDB burst capacity is syntactically correct?
A<code>BurstCapacity: enabled</code>
B<code>ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: 5 }</code>
C<code>EnableBurstCapacity = true</code>
D<code>SetBurstCapacity(5)</code>
Step-by-Step Solution
Solution:
  1. Step 1: Check valid DynamoDB syntax

    ProvisionedThroughput with ReadCapacityUnits and WriteCapacityUnits is valid for table setup.
  2. Step 2: Identify invalid options

    Options B, C, and D are not valid DynamoDB syntax or parameters.
  3. Final Answer:

    <code>ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: 5 }</code> -> Option B
  4. Quick Check:

    Valid syntax = ProvisionedThroughput: { ReadCapacityUnits: 5, WriteCapacityUnits: 5 } [OK]
Quick Trick: Only ProvisionedThroughput syntax is valid here [OK]
Common Mistakes:
MISTAKES
  • Assuming burst capacity needs explicit enabling syntax
  • Using incorrect parameter names
  • Confusing configuration with method calls

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes