Bird
0
0

Given this AWS CLI command:

medium📝 query result Q4 of 15
DynamoDB - Backup and Recovery
Given this AWS CLI command:
aws dynamodb create-backup --table-name Customers --backup-name CustBackup1

What will be the status of the backup immediately after running this command?
AAVAILABLE
BCREATING
CDELETED
DFAILED
Step-by-Step Solution
Solution:
  1. Step 1: Understand backup lifecycle

    When a backup is first created, its status is 'CREATING' while DynamoDB prepares the snapshot.
  2. Step 2: Identify immediate status

    Immediately after the command runs, the backup is not yet ready, so status is 'CREATING'. It changes to 'AVAILABLE' once complete.
  3. Final Answer:

    CREATING -> Option B
  4. Quick Check:

    Backup status after creation = CREATING [OK]
Quick Trick: Backup status starts as CREATING before becoming AVAILABLE [OK]
Common Mistakes:
MISTAKES
  • Assuming backup is AVAILABLE instantly
  • Confusing DELETED or FAILED as initial status
  • Not waiting for backup completion

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes