Complete the code to create a DB parameter group in AWS RDS.
aws rds create-db-parameter-group --db-parameter-group-name [1] --db-parameter-group-family mysql8.0 --description "My custom parameter group"
The --db-parameter-group-name must be a unique name you choose for your parameter group, such as mydbparamgroup.
Complete the code to add an option to an option group.
aws rds add-option-to-option-group --option-group-name myoptiongroup --options Name=[1] --major-engine-version 12.00
The option SQLSERVER_BACKUP_RESTORE is a valid option for SQL Server option groups.
Fix the error in the code to modify a DB parameter group to set a parameter value.
aws rds modify-db-parameter-group --db-parameter-group-name mydbparamgroup --parameters ParameterName=[1],ParameterValue=100,ApplyMethod=immediate
The --parameters argument expects a JSON or key-value pair without the value assignment inside the string. The correct format is to specify the parameter name and value separately.
Fill both blanks to create an option group and add an option to it.
aws rds create-option-group --option-group-name [1] --engine-name [2] --major-engine-version 12.00 --option-group-description "Test option group"
The option group name is myoptiongroup and the engine name is sqlserver-ee for SQL Server Enterprise Edition.
Fill all three blanks to modify a DB parameter group by setting a parameter name, value, and apply method.
aws rds modify-db-parameter-group --db-parameter-group-name mydbparamgroup --parameters ParameterName=[1],ParameterValue=[2],ApplyMethod=[3]
The parameter max_allowed_packet is set to 16777216 bytes and applied immediately.