Bird
0
0

Given this AWS CLI output snippet after running aws rds describe-db-snapshots --db-instance-identifier mydbinstance:

medium📝 service behavior Q13 of 15
AWS - RDS and Relational Databases
Given this AWS CLI output snippet after running aws rds describe-db-snapshots --db-instance-identifier mydbinstance:
{
  "DBSnapshots": [
    {"DBSnapshotIdentifier": "snapshot1", "Status": "available"},
    {"DBSnapshotIdentifier": "snapshot2", "Status": "creating"}
  ]
}
What does the status "creating" mean for snapshot2?
A"snapshot2" is currently being created and not ready for restore.
B"snapshot2" is ready and can be used to restore the database.
C"snapshot2" creation failed and needs retry.
D"snapshot2" is deleted but still listed temporarily.
Step-by-Step Solution
Solution:
  1. Step 1: Understand snapshot status meanings

    Status "creating" means the snapshot process is in progress and not yet complete.
  2. Step 2: Interpret the impact on usage

    While "creating", the snapshot cannot be used for restore until status changes to "available".
  3. Final Answer:

    "snapshot2" is currently being created and not ready for restore. -> Option A
  4. Quick Check:

    Status creating = snapshot in progress [OK]
Quick Trick: Creating means snapshot not ready yet [OK]
Common Mistakes:
  • Assuming creating means snapshot is ready
  • Confusing creating with failed or deleted status
  • Thinking snapshot is deleted but still listed

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes