Amazon RDS is the exam’s stand-in for “a relational database, but managed.” Almost every RDS question is really one of two checks: do you know what “managed” takes off your plate, and can you tell Multi-AZ apart from read replicas. Get those two right and this service is quick marks.
Managed means AWS does the operations
RDS runs relational databases — PostgreSQL, MySQL, MariaDB, Oracle, SQL Server — and takes over the operational work: provisioning, patching the operating system and the database engine, backups, and replication. Your job shrinks to your data, who may access it, and the configuration you choose. On the shared responsibility model this pushes the line well up: unlike a database you install on an EC2 instance, you do not patch the OS or the engine. The contrast the exam likes is exactly that — RDS versus “run the database yourself on EC2.” If a scenario wants to avoid database maintenance, RDS is the answer.
The fork that carries the topic: Multi-AZ vs read replicas
These two features sound similar and do opposite jobs. The exam confuses them on purpose:
- Multi-AZ keeps a synchronous standby in a second Availability Zone and fails over automatically if the primary has a problem. It is about availability. It does not serve read traffic.
- Read replicas are additional copies that serve read queries, taking read load off the primary. They are about performance and scale. They are not a failover mechanism.
Availability, or read scale. Whenever a question describes a read-heavy workload slowing down, the answer is read replicas; whenever it describes surviving the loss of an Availability Zone, the answer is Multi-AZ.
RDS is relational — know its neighbours
RDS is for relational databases. Its most common distractor is DynamoDB, which is AWS’s NoSQL service — a different data model, not an RDS engine. Two more names get offered as “databases” and are not: ElastiCache is an in-memory cache, and S3 is object storage. If a question asks for a relational database with managed operations, none of those fit — RDS does.
How to use the questions below
Answer each one first, then read the explanation past the correct letter to the part that explains why the other three fail. RDS distractors are almost always a real AWS data service placed in the wrong role — DynamoDB where relational belongs, a read replica where a standby belongs. The reasoning below is built to make those distinctions automatic before you sit the exam.
Updated for CLF-C02 (July 2026). The sample questions above are our own work
in the style of the exam — not real exam items. The exam itself is set and marked
by the certification body.