Bird
0
0

Which AWS CLI command correctly activates Point-in-time recovery (PITR) on a DynamoDB table called Users?

easy📝 Syntax Q3 of 15
DynamoDB - Backup and Recovery
Which AWS CLI command correctly activates Point-in-time recovery (PITR) on a DynamoDB table called Users?
Aaws dynamodb update-table --table-name Users --pitr Enabled
Baws dynamodb enable-pitr --table-name Users
Caws dynamodb update-continuous-backups --table-name Users --point-in-time-recovery-specification Enabled=true
Daws dynamodb update-table --table-name Users --point-in-time-recovery Enabled=true
Step-by-Step Solution
Solution:
  1. Step 1: Identify correct command for enabling PITR

    The correct command is update-continuous-backups with the --point-in-time-recovery-specification Enabled=true parameter.
  2. Step 2: Analyze other options

    Options B, C, and D use incorrect commands or parameters that do not exist or are invalid.
  3. Final Answer:

    aws dynamodb update-continuous-backups --table-name Users --point-in-time-recovery-specification Enabled=true -> Option C
  4. Quick Check:

    Use update-continuous-backups to enable PITR [OK]
Quick Trick: Enable PITR with update-continuous-backups command [OK]
Common Mistakes:
MISTAKES
  • Using update-table instead of update-continuous-backups
  • Incorrect parameter names for PITR
  • Assuming a dedicated enable-pitr command exists

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes