Question 500 of 1,040
Design Secure ArchitectureshardMultiple SelectObjective-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.

A reporting application in Account B must read files from an S3 bucket in Account A. The bucket contains objects encrypted with a customer managed KMS key in Account A. The application role in Account B already has an identity policy allowing s3:GetObject on the bucket prefix, but requests still fail with AccessDenied. Which two changes are required for the application to read the objects? Select two.

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

Add a bucket policy in Account A that allows the Account B role to perform s3:GetObject on the required prefix.

Option A is correct because cross-account S3 access requires the destination account (Account A) to explicitly grant access via a bucket policy that allows the source account's role (Account B) to perform s3:GetObject on the specified prefix. Without this bucket policy, the S3 service in Account A will deny the request, even if the IAM identity policy in Account B permits the action. Option B is correct because the objects are encrypted with a customer managed KMS key in Account A; the application role in Account B must be added to the KMS key policy with kms:Decrypt permission to decrypt the objects during retrieval. Both the S3 bucket policy and the KMS key policy are required for cross-account encrypted access.

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.

  • Add a bucket policy in Account A that allows the Account B role to perform s3:GetObject on the required prefix.

    Why this is correct

    Cross-account S3 access requires a resource-based permission on the bucket. The bucket policy must explicitly allow the external role to read the needed prefix, otherwise the bucket owner blocks the request even if the role's identity policy allows it.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Add the Account B role to the KMS key policy in Account A with permission to use kms:Decrypt.

    Why this is correct

    Because the objects use SSE-KMS, S3 must be able to decrypt them with the customer managed key. The external role needs authorization in the KMS key policy, or the decrypt step fails even when S3 access is allowed.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Attach an IAM policy in Account B that grants s3:* on the bucket and its objects.

    Why it's wrong here

    An identity policy in Account B alone cannot authorize access to a bucket in another account. S3 also requires a matching resource policy or equivalent cross-account trust, and broad s3:* is unnecessary for least privilege.

    When this WOULD be correct

    This option would be correct if the application role in Account B did not already have the necessary S3 permissions, and the question asked for a single-account setup where the bucket and role are in the same account, requiring only IAM policy updates.

  • Create an S3 gateway endpoint in Account B so the application can reach the bucket privately.

    Why it's wrong here

    A gateway endpoint can improve private connectivity, but it does not solve missing authorization. The AccessDenied error here is caused by cross-account permission and KMS policy gaps, not by the network path.

    When this WOULD be correct

    A question where an application in a VPC cannot reach S3 due to public internet routing restrictions (e.g., no NAT gateway, no internet gateway) and the bucket is in the same region. Adding an S3 Gateway Endpoint would provide private connectivity.

  • Add an SCP in Account A that allows the Account B role to bypass KMS encryption checks.

    Why it's wrong here

    Service control policies do not grant access to a specific external role and cannot bypass KMS authorization. SCPs only set guardrails for accounts and OUs; they do not replace bucket or key policies.

    When this WOULD be correct

    An SCP would be correct in a question where an organization wants to prevent all accounts from disabling encryption on S3 buckets, and the correct action is to add an SCP that denies s3:PutBucketEncryption or similar actions to enforce encryption requirements.

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.

Add a bucket policy in Account A that allows the Account B role to perform s3:GetObject on the required prefix.Correct answer

Why this is correct

Cross-account S3 access requires a resource-based permission on the bucket. The bucket policy must explicitly allow the external role to read the needed prefix, otherwise the bucket owner blocks the request even if the role's identity policy allows it.

Attach an IAM policy in Account B that grants s3:* on the bucket and its objects.Wrong answer — click to see why

Why this is wrong here

The application role in Account B already has an identity policy allowing s3:GetObject on the bucket prefix, so adding another IAM policy granting s3:* is redundant and does not address the cross-account permission issue or the KMS key policy requirement.

★ When this WOULD be the correct answer

This option would be correct if the application role in Account B did not already have the necessary S3 permissions, and the question asked for a single-account setup where the bucket and role are in the same account, requiring only IAM policy updates.

Why candidates choose this

Candidates may think that granting broader S3 permissions (s3:*) will override any missing permissions, not realizing the core issue is cross-account access and KMS key policy, not insufficient IAM permissions in Account B.

Create an S3 gateway endpoint in Account B so the application can reach the bucket privately.Wrong answer — click to see why

Why this is wrong here

The error is AccessDenied, not connectivity issues. S3 Gateway Endpoints only provide private network access to S3, but do not grant IAM permissions or resolve KMS decryption authorization failures.

★ When this WOULD be the correct answer

A question where an application in a VPC cannot reach S3 due to public internet routing restrictions (e.g., no NAT gateway, no internet gateway) and the bucket is in the same region. Adding an S3 Gateway Endpoint would provide private connectivity.

Why candidates choose this

Candidates may confuse network connectivity problems with authorization failures, assuming that a private endpoint can bypass IAM or KMS permission issues.

Add an SCP in Account A that allows the Account B role to bypass KMS encryption checks.Wrong answer — click to see why

Why this is wrong here

SCPs (Service Control Policies) cannot grant permissions; they only restrict permissions. Additionally, SCPs cannot bypass KMS encryption checks; the KMS key policy must explicitly allow the Account B role to use kms:Decrypt.

★ When this WOULD be the correct answer

An SCP would be correct in a question where an organization wants to prevent all accounts from disabling encryption on S3 buckets, and the correct action is to add an SCP that denies s3:PutBucketEncryption or similar actions to enforce encryption requirements.

Why candidates choose this

Candidates may confuse SCPs with resource policies or think SCPs can grant cross-account access, or they may misunderstand that SCPs can override KMS permissions, leading them to select this option as a shortcut to fix the access issue.

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 often assume a cross-account IAM role with s3:GetObject permission is sufficient, overlooking that S3 bucket policies and KMS key policies are separate authorization layers that must explicitly allow the external principal, especially when objects are encrypted with a customer managed KMS key.

Detailed technical explanation

How to think about this question

Under the hood, cross-account S3 access with SSE-KMS requires a two-step authorization: the bucket policy must allow the s3:GetObject action for the external principal, and the KMS key policy must allow kms:Decrypt for that same principal. The IAM role in Account B must also have an identity policy allowing both actions, but the bucket and key policies are the gatekeepers in the source account. A real-world scenario is a data lake where Account A stores encrypted data and Account B runs analytics; forgetting the KMS key policy update is a common cause of persistent AccessDenied errors even after the bucket policy is correctly configured.

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: Add a bucket policy in Account A that allows the Account B role to perform s3:GetObject on the required prefix. — Option A is correct because cross-account S3 access requires the destination account (Account A) to explicitly grant access via a bucket policy that allows the source account's role (Account B) to perform s3:GetObject on the specified prefix. Without this bucket policy, the S3 service in Account A will deny the request, even if the IAM identity policy in Account B permits the action. Option B is correct because the objects are encrypted with a customer managed KMS key in Account A; the application role in Account B must be added to the KMS key policy with kms:Decrypt permission to decrypt the objects during retrieval. Both the S3 bucket policy and the KMS key policy are required for cross-account encrypted access.

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.