Bird
0
0

Which AWS SDK method is used to add a replica region to an existing DynamoDB Global Table?

easy📝 Syntax Q3 of 15
DynamoDB - Backup and Recovery
Which AWS SDK method is used to add a replica region to an existing DynamoDB Global Table?
AputItem with Region parameter
BcreateGlobalTable with ReplicaRegions parameter
CupdateTable with ReplicaUpdates parameter
DdeleteTable with ReplicaRegions parameter
Step-by-Step Solution
Solution:
  1. Step 1: Identify method to modify Global Table replicas

    Adding a replica uses updateTable with ReplicaUpdates to specify new regions.
  2. Step 2: Check other options

    createGlobalTable creates new tables, putItem adds data, deleteTable removes tables; none add replicas.
  3. Final Answer:

    updateTable with ReplicaUpdates parameter -> Option C
  4. Quick Check:

    Add replica = updateTable + ReplicaUpdates [OK]
Quick Trick: Use updateTable with ReplicaUpdates to add replicas [OK]
Common Mistakes:
MISTAKES
  • Using createGlobalTable to add replicas
  • Confusing putItem with table updates
  • Trying to delete to add replicas

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes