0
0
AWScloud~10 mins

RDS pricing considerations in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the RDS instance class for cost estimation.

AWS
rds_instance = {"DBInstanceClass": "[1]"}
Drag options to blanks, or click blank then click option'
Adb.t3.micro
Bdb.large
Cdb.xlarge
Ddb.m5.24xlarge
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting a large instance class increases cost unnecessarily.
Using an instance class not supported by RDS.
2fill in blank
medium

Complete the code to enable Multi-AZ deployment for high availability, which affects pricing.

AWS
rds_config = {"MultiAZ": [1]
Drag options to blanks, or click blank then click option'
A"true"
B"false"
Ctrue
DFalse
Attempts:
3 left
💡 Hint
Common Mistakes
Using string values instead of boolean.
Disabling Multi-AZ when high availability is needed.
3fill in blank
hard

Fix the error in the storage type to select a cost-effective option.

AWS
storage_config = {"StorageType": "[1]"}
Drag options to blanks, or click blank then click option'
Astandard
Bgp3
Cio1
Dgp2
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing io1 which is expensive and high performance.
Using gp2 or gp3 which cost more than standard.
4fill in blank
hard

Fill both blanks to configure backup retention and storage allocation for cost control.

AWS
backup_config = {"BackupRetentionPeriod": [1], "AllocatedStorage": [2]
Drag options to blanks, or click blank then click option'
A7
B30
C20
D100
Attempts:
3 left
💡 Hint
Common Mistakes
Setting backup retention too high increases cost.
Allocating excessive storage wastes money.
5fill in blank
hard

Fill all three blanks to configure RDS instance with cost-saving options: instance class, storage type, and Multi-AZ.

AWS
rds_settings = {"DBInstanceClass": "[1]", "StorageType": "[2]", "MultiAZ": [3]
Drag options to blanks, or click blank then click option'
Adb.t3.micro
Btrue
Cstandard
Ddb.m5.large
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting large instance classes or expensive storage.
Using string 'true' instead of boolean true for MultiAZ.