Question 136 of 1,040
Design Secure ArchitecturesmediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the SCP’s explicit deny overrides the IAM role’s AdministratorAccess because Service Control Policies act as maximum permission guardrails in AWS Organizations. Even when an IAM role has the full AdministratorAccess policy attached, an SCP that explicitly denies an action like ec2:CreateSnapshot will block that action, resulting in an AccessDenied error. This happens because SCPs are evaluated after IAM policies, and an explicit deny in an SCP cannot be overridden by any IAM allow—it sets an absolute ceiling on permissions. On the SAA-C03 exam, this concept tests your understanding of how SCPs enforce boundaries across accounts, often appearing in scenarios where a user is confused by denied access despite broad IAM permissions. A common trap is assuming AdministratorAccess is invincible, but remember: SCPs are the “parental controls” of AWS—they can deny anything, even full admin rights. Memory tip: “SCP says no, IAM says go—SCP wins, end of show.”

SAA-C03 Design Secure Architectures Practice Question

This SAA-C03 practice question tests your understanding of design secure architectures. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.

Exhibit

AWS Organizations policy summary:

Root OU: Full access
Production OU: SCP attached

SCP content:
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Deny",
      "Action": ["ec2:CreateSnapshot", "ec2:DeleteSnapshot"],
      "Resource": "*"
    }
  ]
}

CloudTrail event:
- userIdentity: arn:aws:iam::444455556666:role/OpsAdmin
- eventName: CreateSnapshot
- errorCode: AccessDenied
- errorMessage: action denied by organizations service control policy

Based on the exhibit, why is the IAM role still receiving AccessDenied even though it has AdministratorAccess attached?

Question 1mediummultiple choice
Full question →

Exhibit

AWS Organizations policy summary:

Root OU: Full access
Production OU: SCP attached

SCP content:
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Deny",
      "Action": ["ec2:CreateSnapshot", "ec2:DeleteSnapshot"],
      "Resource": "*"
    }
  ]
}

CloudTrail event:
- userIdentity: arn:aws:iam::444455556666:role/OpsAdmin
- eventName: CreateSnapshot
- errorCode: AccessDenied
- errorMessage: action denied by organizations service control policy

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

The SCP is acting as a maximum permission guardrail, so its explicit deny overrides the IAM allow.

B is correct because Service Control Policies (SCPs) act as a maximum permission guardrail in AWS Organizations. Even if an IAM role has the AdministratorAccess policy attached, an SCP with an explicit deny on the ec2:CreateSnapshot action will override that allow, resulting in an AccessDenied error. SCPs are evaluated after IAM policies, and an explicit deny in an SCP cannot be overridden by any IAM allow.

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.

  • AdministratorAccess is always evaluated before SCPs, so the SCP is ignored in production accounts.

    Why it's wrong here

    IAM allows are not evaluated before SCPs in a way that bypasses an SCP deny. The SCP still limits the account.

  • The SCP is acting as a maximum permission guardrail, so its explicit deny overrides the IAM allow.

    Why this is correct

    SCPs set the outer boundary for permissions in an account or OU. They do not grant access, but they can block actions even when the IAM role has AdministratorAccess. The explicit deny in the SCP is therefore the reason CreateSnapshot fails. To allow the operation, the organization must change the SCP or move the account out of the restrictive scope.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The role needs a session duration of at least 12 hours before SCPs stop applying.

    Why it's wrong here

    Session duration does not change how SCP evaluation works. The denial is policy-based, not session-length based.

  • The account needs an AWS Config rule to approve the snapshot action before IAM can work.

    Why it's wrong here

    AWS Config evaluates resource compliance and cannot authorize API calls or override an SCP deny.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume AdministratorAccess grants full permissions unconditionally, forgetting that SCPs can impose a higher-level deny that overrides any IAM allow, especially in AWS Organizations.

Detailed technical explanation

How to think about this question

Under the hood, AWS evaluates authorization using a multi-step process: first, IAM policies (identity-based and resource-based) are evaluated, then SCPs are applied as a boundary. An explicit deny in an SCP at the organization, OU, or account level will always result in a final decision of deny, regardless of any allow in IAM policies. This is a key security mechanism to prevent privilege escalation in multi-account environments, such as restricting production accounts from creating snapshots to avoid data exfiltration.

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 company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.

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: The SCP is acting as a maximum permission guardrail, so its explicit deny overrides the IAM allow. — B is correct because Service Control Policies (SCPs) act as a maximum permission guardrail in AWS Organizations. Even if an IAM role has the AdministratorAccess policy attached, an SCP with an explicit deny on the ec2:CreateSnapshot action will override that allow, resulting in an AccessDenied error. SCPs are evaluated after IAM policies, and an explicit deny in an SCP cannot be overridden by any IAM allow.

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

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.