Complete the code to specify the RDS instance class for cost estimation.
rds_instance = {"DBInstanceClass": "[1]"}The db.t3.micro instance class is a low-cost option suitable for small workloads, helping to minimize RDS costs.
Complete the code to enable Multi-AZ deployment for high availability, which affects pricing.
rds_config = {"MultiAZ": [1]Setting MultiAZ to true enables high availability but increases cost.
Fix the error in the storage type to select a cost-effective option.
storage_config = {"StorageType": "[1]"}The standard storage type is the most cost-effective but slower option compared to gp2 or io1.
Fill both blanks to configure backup retention and storage allocation for cost control.
backup_config = {"BackupRetentionPeriod": [1], "AllocatedStorage": [2]Setting BackupRetentionPeriod to 7 days limits backup costs. Allocating 20 GB storage keeps storage costs low.
Fill all three blanks to configure RDS instance with cost-saving options: instance class, storage type, and Multi-AZ.
rds_settings = {"DBInstanceClass": "[1]", "StorageType": "[2]", "MultiAZ": [3]Using db.t3.micro and standard storage reduces costs. Setting MultiAZ to true adds availability but increases price.