Which AWS CLI command will launch an RDS instance named 'prod-db' using PostgreSQL engine with 20 GB allocated storage?
Aaws rds create-db-instance --db-instance-identifier prod-db --engine postgres --allocated-storage 20 --db-instance-class db.t3.medium --master-username admin --master-user-password Passw0rd!
Baws rds create-db-instance --db-instance-identifier prod-db --engine mysql --allocated-storage 20 --db-instance-class db.t3.medium --master-username admin --master-user-password Passw0rd!
Caws rds create-db-instance --db-instance-identifier prod-db --engine postgres --allocated-storage 10 --db-instance-class db.t3.medium --master-username admin --master-user-password Passw0rd!
Daws rds create-db-instance --db-instance-identifier prod-db --engine postgres --allocated-storage 20 --db-instance-class db.t2.micro --master-username admin --master-user-password Passw0rd!