Complete the code to specify the Amazon RDS engine for MySQL.
engine = "[1]"
The correct engine name for MySQL in Amazon RDS is mysql.
Complete the code to specify the Amazon RDS engine for PostgreSQL.
engine = "[1]"
The correct engine name for PostgreSQL in Amazon RDS is postgres.
Fix the error in the code to specify the Amazon RDS engine for MariaDB.
engine = "[1]"
The correct engine name for MariaDB in Amazon RDS is mariadb.
Fill both blanks to specify the Amazon RDS engine and version for SQL Server.
engine = "[1]" engine_version = "[2]"
The engine name for SQL Server is sqlserver. The version can be specified as 2017 or 2019. Here, 2017 is chosen.
Fill all three blanks to specify the Amazon RDS engine, version, and license model for Oracle.
engine = "[1]" engine_version = "[2]" license_model = "[3]"
Oracle engine is specified as oracle. Version 12.2 is a valid Oracle RDS version. License model bring-your-own-license is a common option for Oracle.