Bird
0
0

Which AWS CLI command is used to create a manual snapshot named backup1 for an RDS instance called prod-db?

easy📝 Configuration Q3 of 15
AWS - RDS and Relational Databases
Which AWS CLI command is used to create a manual snapshot named backup1 for an RDS instance called prod-db?
Aaws rds create-db-snapshot --db-instance-identifier prod-db --db-snapshot-identifier backup1
Baws rds create-db-instance-snapshot --db-instance-id prod-db --snapshot-name backup1
Caws rds snapshot-db-instance --instance-id prod-db --snapshot-id backup1
Daws rds create-snapshot --instance prod-db --name backup1
Step-by-Step Solution
Solution:
  1. Step 1: Identify the correct AWS CLI command

    The correct command to create a manual snapshot is aws rds create-db-snapshot.
  2. Step 2: Use the correct parameters

    The parameters required are --db-instance-identifier for the RDS instance name and --db-snapshot-identifier for the snapshot name.
  3. Final Answer:

    aws rds create-db-snapshot --db-instance-identifier prod-db --db-snapshot-identifier backup1 -> Option A
  4. Quick Check:

    Command syntax matches AWS documentation [OK]
Quick Trick: Use create-db-snapshot with both identifiers [OK]
Common Mistakes:
  • Using incorrect command names like create-db-instance-snapshot
  • Mixing up parameter names
  • Omitting the snapshot identifier

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes