Bird
0
0

Consider this AWS CLI command snippet to launch an RDS instance:

medium📝 Predict Output Q13 of 15
AWS - RDS and Relational Databases
Consider this AWS CLI command snippet to launch an RDS instance:
aws rds create-db-instance --db-instance-identifier mydb --db-instance-class db.t3.micro --engine mysql --master-username admin --master-user-password Pass1234 --allocated-storage 20
What will be the allocated storage size of the created RDS instance?
ANot specified, default used
B10 GB
C100 GB
D20 GB
Step-by-Step Solution
Solution:
  1. Step 1: Locate storage parameter in command

    The parameter --allocated-storage 20 sets storage size to 20 GB.
  2. Step 2: Confirm no other storage size overrides

    No other storage size is specified, so 20 GB is used.
  3. Final Answer:

    20 GB -> Option D
  4. Quick Check:

    Allocated storage = 20 GB [OK]
Quick Trick: Look for --allocated-storage value in command [OK]
Common Mistakes:
  • Assuming default storage without checking parameter
  • Confusing instance class with storage size
  • Ignoring the explicit storage size given

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes