Study CLF-C02 Shared Responsibility and Protection Boundaries: key concepts, common traps, and exam decision cues.
The shared responsibility model is one of the most exammed ideas on CLF-C02 because it prevents weak assumptions. AWS secures the cloud infrastructure it operates. Customers still secure what they put in the cloud, how they configure it, and who can access it.
Shared responsibility model: Security split where AWS is responsible for security of the cloud and the customer is responsible for security in the cloud.
The exam usually wants you to classify whether the responsibility belongs to:
If the stem asks who patches the guest operating system on an EC2 instance, that is not the same question as who protects the physical datacenter.
| AWS typically handles | Customer typically handles |
|---|---|
| physical datacenters and hardware | data classification and protection choices |
| the foundational networking and host infrastructure | identities, users, roles, and permissions |
| managed service platform operation | workload configuration |
| managed hypervisor layers and core service availability | guest OS and application controls when using customer-managed compute |
One reason this topic matters is that the customer boundary shifts depending on the service model:
flowchart LR
A["EC2"] --> B["Customer manages guest OS, patching, and application layer"]
C["RDS"] --> D["AWS manages more of the database platform layer"]
E["Lambda"] --> F["AWS manages even more of the runtime platform"]
What stays true:
| Scenario | Strongest interpretation |
|---|---|
| Broken disk in the AWS datacenter | AWS responsibility |
| IAM users have overly broad permissions | Customer responsibility |
| Security group allows traffic too broadly | Customer responsibility |
| Hardware redundancy inside the Region | AWS responsibility |
| Encrypting sensitive application data | Customer responsibility, even if AWS supplies the encryption tooling |
Answer choices often mix one AWS-owned infrastructure responsibility with one customer-owned configuration responsibility. The wrong answer is usually the one that assumes “moving to cloud means AWS secures everything for me.”
Managed service does not mean zero customer responsibility. It usually means AWS manages more of the platform, while the customer still owns access, data, and policy decisions.
When this topic appears, classify the item in this order:
A company stores sensitive customer records in AWS and uses IAM users with overly broad permissions. Which statement is strongest?
Correct answer: C. This is exactly the type of question CLF-C02 asks. AWS secures the underlying cloud platform, but the customer still owns identities, permissions, and data protection choices.