Bird
0
0

You tried to create a backup with this command:

medium📝 Debug Q14 of 15
DynamoDB - Backup and Recovery
You tried to create a backup with this command:
aws dynamodb create-backup --table-name Orders

Why did it fail?
ATable name 'Orders' does not exist
BMissing the required --backup-name parameter
CYou need to use 'start-backup' instead of 'create-backup'
DBackups are not supported for DynamoDB tables
Step-by-Step Solution
Solution:
  1. Step 1: Check the command syntax

    The command is missing the --backup-name parameter which is required.
  2. Step 2: Understand AWS CLI requirements

    Without a backup name, the command cannot create a backup and will fail.
  3. Final Answer:

    Missing the required --backup-name parameter -> Option B
  4. Quick Check:

    create-backup needs backup name [OK]
Quick Trick: Always include --backup-name when creating backups [OK]
Common Mistakes:
MISTAKES
  • Assuming table name alone is enough
  • Using wrong command like start-backup
  • Believing backups are unsupported

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More DynamoDB Quizzes