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 20What will be the allocated storage size of the created RDS instance?
