Bird
0
0

Given this AWS CLI command:

medium📝 Predict Output Q4 of 15
AWS - RDS and Relational Databases
Given this AWS CLI command:
aws rds create-db-instance --db-instance-identifier testdb --engine postgres --allocated-storage 10 --db-instance-class db.t3.small --master-username user1 --master-user-password pass123

What will be the storage size of the launched RDS instance?
AStorage size is not set
B20 GB
C5 GB
D10 GB
Step-by-Step Solution
Solution:
  1. Step 1: Identify the storage parameter in the command

    The parameter '--allocated-storage 10' sets the storage size to 10 GB.
  2. Step 2: Confirm no other storage parameters override it

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

    10 GB -> Option D
  4. Quick Check:

    Allocated storage = 10 GB [OK]
Quick Trick: Check '--allocated-storage' value for size [OK]
Common Mistakes:
MISTAKES
  • Assuming default storage size without checking parameter
  • Confusing storage units
  • Ignoring the explicit storage parameter

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes