Question 56 of 1,024
Security and CompliancemediumMultiple ChoiceObjective-mapped

CLF-C02 Security and Compliance Practice Question

This CLF-C02 practice question tests your understanding of security and compliance. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A financial services company stores sensitive transaction data in Amazon S3. The company must encrypt the data at rest using keys that are stored in a hardware security module (HSM) validated under FIPS 140-2 Level 3. Additionally, the company requires full control over the key lifecycle, including rotation and deletion, and AWS must not have any access to the keys. Which AWS service should the company use to generate and store the encryption keys?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

AWS CloudHSM

AWS CloudHSM is the correct choice because it provides dedicated hardware security modules (HSMs) that are validated under FIPS 140-2 Level 3, allowing you to generate and store encryption keys entirely within the HSM. With CloudHSM, AWS has no access to your keys, and you retain full control over key lifecycle operations such as rotation and deletion, meeting the strict compliance and security requirements of the financial services company.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • AWS Key Management Service (KMS) with a customer managed key

    Why it's wrong here

    AWS KMS uses shared HSMs and provides FIPS 140-2 Level 2 validation (Level 3 in select regions), but the customer does not have dedicated, isolated HSM hardware. AWS retains some administrative access to the HSM infrastructure. This does not meet the requirement for exclusive customer control and Level 3 validation.

    When this WOULD be correct

    A company needs to encrypt data at rest with a key that is automatically rotated and managed by AWS, and does not require exclusive control over the HSM or FIPS 140-2 Level 3 validation. In that case, AWS KMS with a customer managed key is appropriate.

  • AWS CloudHSM

    Why this is correct

    AWS CloudHSM provides dedicated HSMs that are FIPS 140-2 Level 3 validated. Customers have full control over the HSMs and the keys stored inside them, including the ability to rotate and delete keys. AWS cannot access the keys because the HSMs are dedicated to the customer and managed by the customer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • AWS Secrets Manager

    Why it's wrong here

    AWS Secrets Manager is a service for securely storing and rotating secrets (e.g., passwords, API keys). It does not provide dedicated HSM hardware or FIPS 140-2 Level 3 validation. It is not designed for generating or storing encryption keys for data at rest.

    When this WOULD be correct

    A company needs to automatically rotate database credentials (e.g., RDS passwords) and store them securely. Secrets Manager would be the correct service to manage the secret lifecycle, including rotation and retrieval via API.

  • AWS Certificate Manager (ACM)

    Why it's wrong here

    AWS Certificate Manager handles SSL/TLS certificate provisioning, renewal, and deployment. It does not generate or store encryption keys for S3 data at rest, nor does it offer dedicated HSM capabilities with FIPS 140-2 Level 3 validation.

    When this WOULD be correct

    A company needs to manage SSL/TLS certificates for HTTPS endpoints (e.g., CloudFront, ELB) and wants automatic renewal and deployment. ACM would be the correct service to handle certificate lifecycle without manual intervention.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The CLF-C02 exam frequently reuses these exact scenarios with slightly different constraints.

AWS CloudHSMCorrect answer

Why this is correct

AWS CloudHSM provides dedicated HSMs that are FIPS 140-2 Level 3 validated. Customers have full control over the HSMs and the keys stored inside them, including the ability to rotate and delete keys. AWS cannot access the keys because the HSMs are dedicated to the customer and managed by the customer.

AWS Key Management Service (KMS) with a customer managed keyWrong answer — click to see why

Why this is wrong here

AWS KMS with a customer managed key does not use a hardware security module (HSM) validated under FIPS 140-2 Level 3; it uses FIPS 140-2 Level 2 or Level 3 overall, but AWS retains access to the keys and does not provide exclusive customer control over the HSM.

★ When this WOULD be the correct answer

A company needs to encrypt data at rest with a key that is automatically rotated and managed by AWS, and does not require exclusive control over the HSM or FIPS 140-2 Level 3 validation. In that case, AWS KMS with a customer managed key is appropriate.

Why candidates choose this

Candidates may confuse 'customer managed key' with full control over the key lifecycle, but KMS does not allow the customer to control the underlying HSM or prevent AWS access to the keys.

AWS Secrets ManagerWrong answer — click to see why

Why this is wrong here

AWS Secrets Manager is designed for securely storing and rotating secrets like database credentials, not for generating or managing encryption keys with FIPS 140-2 Level 3 validated HSMs. It does not provide the required HSM-level key control or prevent AWS access to keys.

★ When this WOULD be the correct answer

A company needs to automatically rotate database credentials (e.g., RDS passwords) and store them securely. Secrets Manager would be the correct service to manage the secret lifecycle, including rotation and retrieval via API.

Why candidates choose this

Candidates may confuse Secrets Manager's ability to store secrets with key management, or assume it can generate encryption keys because it handles sensitive data, overlooking the specific HSM and key control requirements.

AWS Certificate Manager (ACM)Wrong answer — click to see why

Why this is wrong here

AWS Certificate Manager (ACM) is used to provision, manage, and deploy SSL/TLS certificates, not for generating and storing encryption keys for data at rest in S3. It does not provide FIPS 140-2 Level 3 validated HSM or full customer control over key lifecycle with no AWS access.

★ When this WOULD be the correct answer

A company needs to manage SSL/TLS certificates for HTTPS endpoints (e.g., CloudFront, ELB) and wants automatic renewal and deployment. ACM would be the correct service to handle certificate lifecycle without manual intervention.

Why candidates choose this

Candidates may confuse ACM with key management services because both involve cryptographic operations, or they might think ACM can generate encryption keys for data protection due to its name containing 'Certificate' and 'Management'.

Analysis generated from the official CLF-C02blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse AWS KMS customer managed keys with full customer control, but KMS still allows AWS to manage the underlying HSM infrastructure and does not meet FIPS 140-2 Level 3 requirements, whereas CloudHSM provides exclusive customer control and a higher validation level.

Detailed technical explanation

How to think about this question

AWS CloudHSM provides a dedicated, single-tenant HSM appliance that runs the FIPS 140-2 Level 3 validated firmware, ensuring that cryptographic operations occur within the hardware boundary. You manage keys via the CloudHSM client software using PKCS#11, Java JCE, or Microsoft CNG interfaces, and you can enforce key rotation and deletion policies directly on the HSM. In a real-world scenario, a financial institution might use CloudHSM to generate a master key for envelope encryption, where the data key is used in S3 server-side encryption with customer-provided keys (SSE-C) or client-side encryption, ensuring that AWS never sees the plaintext key.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related CLF-C02 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free CLF-C02 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this CLF-C02 question test?

Security and Compliance — This question tests Security and Compliance — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: AWS CloudHSM — AWS CloudHSM is the correct choice because it provides dedicated hardware security modules (HSMs) that are validated under FIPS 140-2 Level 3, allowing you to generate and store encryption keys entirely within the HSM. With CloudHSM, AWS has no access to your keys, and you retain full control over key lifecycle operations such as rotation and deletion, meeting the strict compliance and security requirements of the financial services company.

What should I do if I get this CLF-C02 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More CLF-C02 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This CLF-C02 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CLF-C02 exam.