Question 341 of 1,040
Design Secure ArchitectureseasyMultiple ChoiceObjective-mapped

SAA-C03 Design Secure Architectures Practice Question

This SAA-C03 practice question tests your understanding of design secure architectures. 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.

You use a customer managed AWS KMS key (CMK) to encrypt objects in an S3 bucket using SSE-KMS. A specific IAM role must be able to decrypt objects. Where should you grant kms:Decrypt permissions so that the role can decrypt data encrypted with that CMK?

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

In the KMS key policy, allowing kms:Decrypt (and any other required KMS permissions) for the role’s principal ARN.

When using a customer managed KMS key (CMK) with SSE-KMS, the KMS key policy is the primary access control mechanism. To allow a specific IAM role to decrypt objects, you must grant kms:Decrypt (and typically kms:DescribeKey) in the key policy for that role's principal ARN. Without this explicit permission in the key policy, the role will be denied decryption even if it has s3:GetObject permissions, because KMS enforces its own authorization.

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.

  • In the KMS key policy, allowing kms:Decrypt (and any other required KMS permissions) for the role’s principal ARN.

    Why this is correct

    With SSE-KMS, KMS decryption is authorized by KMS for the specific CMK. The CMK key policy is a primary authorization layer; if the key policy does not allow kms:Decrypt for the role (or a matching principal), S3 requests that require KMS decryption will fail even if the S3 or IAM identity policies allow s3:GetObject.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Only in the S3 bucket policy by granting s3:GetObject, because S3 bucket policy controls decryption.

    Why it's wrong here

    An S3 bucket policy can authorize s3:GetObject, but it does not grant KMS permission to decrypt a KMS-encrypted data key. KMS will still require key-policy (and IAM) authorization for kms:Decrypt on the CMK.

    When this WOULD be correct

    In a scenario where the question asks how to grant access to decrypt objects encrypted with SSE-S3 (not SSE-KMS) or when the question specifies that the CMK's key policy already allows the account root and the role has an IAM policy granting kms:Decrypt, then the answer would focus on S3 bucket policy for s3:GetObject.

  • Only in the IAM role identity policy; the KMS key policy does not need changes for SSE-KMS.

    Why it's wrong here

    For customer-managed keys, a restrictive CMK key policy can deny or omit access. In that case, identity-policy kms:Decrypt permission alone is insufficient because the key policy is also evaluated and must allow the role to use the key for decryption.

    When this WOULD be correct

    This would be correct if the question asked about granting permissions to decrypt objects encrypted with SSE-S3 (not SSE-KMS), where S3 manages the encryption keys and no KMS permissions are needed. In that case, only S3 bucket policy or IAM policy granting s3:GetObject is required.

  • By enabling S3 default encryption; KMS permissions are automatically granted to all IAM roles in the account.

    Why it's wrong here

    Default encryption only ensures objects are encrypted with the specified CMK when written. It does not grant decrypt permissions to other principals. Roles must be explicitly authorized to use the CMK.

    When this WOULD be correct

    If the question asked about using SSE-S3 (AES-256) with S3 default encryption, then no KMS permissions are needed, and the bucket policy or IAM policy would control access to the objects.

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 SAA-C03 exam frequently reuses these exact scenarios with slightly different constraints.

In the KMS key policy, allowing kms:Decrypt (and any other required KMS permissions) for the role’s principal ARN.Correct answer

Why this is correct

With SSE-KMS, KMS decryption is authorized by KMS for the specific CMK. The CMK key policy is a primary authorization layer; if the key policy does not allow kms:Decrypt for the role (or a matching principal), S3 requests that require KMS decryption will fail even if the S3 or IAM identity policies allow s3:GetObject.

Only in the S3 bucket policy by granting s3:GetObject, because S3 bucket policy controls decryption.Wrong answer — click to see why

Why this is wrong here

S3 bucket policies control S3 actions like s3:GetObject, but they cannot grant KMS permissions. Decrypting SSE-KMS objects requires explicit kms:Decrypt permission on the CMK, which must be granted via the KMS key policy or an IAM policy that the key policy allows.

★ When this WOULD be the correct answer

In a scenario where the question asks how to grant access to decrypt objects encrypted with SSE-S3 (not SSE-KMS) or when the question specifies that the CMK's key policy already allows the account root and the role has an IAM policy granting kms:Decrypt, then the answer would focus on S3 bucket policy for s3:GetObject.

Why candidates choose this

Candidates may mistakenly think that S3 bucket policies are sufficient for all aspects of S3 access, including decryption, and overlook that SSE-KMS requires separate KMS permissions.

Only in the IAM role identity policy; the KMS key policy does not need changes for SSE-KMS.Wrong answer — click to see why

Why this is wrong here

The KMS key policy must explicitly grant kms:Decrypt to the IAM role; without it, the role cannot decrypt objects even if it has an IAM policy allowing kms:Decrypt, because KMS key policies control access to the CMK and can override IAM policies.

★ When this WOULD be the correct answer

This would be correct if the question asked about granting permissions to decrypt objects encrypted with SSE-S3 (not SSE-KMS), where S3 manages the encryption keys and no KMS permissions are needed. In that case, only S3 bucket policy or IAM policy granting s3:GetObject is required.

Why candidates choose this

Candidates may think that IAM policies alone are sufficient for all AWS services, forgetting that KMS uses a resource-based policy (key policy) that must explicitly allow access, especially when the key is in a different account or when the key policy denies default IAM access.

By enabling S3 default encryption; KMS permissions are automatically granted to all IAM roles in the account.Wrong answer — click to see why

Why this is wrong here

Enabling S3 default encryption does not automatically grant KMS permissions to IAM roles; you must explicitly grant kms:Decrypt in the key policy or IAM policy for the role to decrypt objects encrypted with a customer managed CMK.

★ When this WOULD be the correct answer

If the question asked about using SSE-S3 (AES-256) with S3 default encryption, then no KMS permissions are needed, and the bucket policy or IAM policy would control access to the objects.

Why candidates choose this

Candidates may mistakenly think that S3 default encryption automatically handles all permissions for decryption, overlooking that SSE-KMS requires explicit KMS key permissions separate from S3 actions.

Analysis generated from the official SAA-C03blueprint 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 assume S3 bucket policies or IAM identity policies alone are sufficient for decryption, forgetting that KMS enforces its own authorization layer and the key policy is the gatekeeper for all KMS operations.

Detailed technical explanation

How to think about this question

Under the hood, when S3 receives a GET request for an SSE-KMS encrypted object, it calls KMS Decrypt with the encrypted data key. KMS evaluates the key policy, any grants, and IAM policies (if the key policy allows IAM policies) to authorize the request. A common real-world scenario is cross-account access: you must add the external account's root principal in the key policy and then grant the specific IAM role permissions via an IAM policy in that account, because key policies cannot reference cross-account role ARNs directly.

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 SAA-C03 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 SAA-C03 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 SAA-C03 question test?

Design Secure Architectures — This question tests Design Secure Architectures — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: In the KMS key policy, allowing kms:Decrypt (and any other required KMS permissions) for the role’s principal ARN. — When using a customer managed KMS key (CMK) with SSE-KMS, the KMS key policy is the primary access control mechanism. To allow a specific IAM role to decrypt objects, you must grant kms:Decrypt (and typically kms:DescribeKey) in the key policy for that role's principal ARN. Without this explicit permission in the key policy, the role will be denied decryption even if it has s3:GetObject permissions, because KMS enforces its own authorization.

What should I do if I get this SAA-C03 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 SAA-C03 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 SAA-C03 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 SAA-C03 exam.