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

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?

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.

    When this WOULD be correct

    This option would be correct if the question described a scenario where an SCP allows an action but an IAM policy denies it, and the question asks about evaluation order. In that case, IAM deny overrides SCP allow, so AdministratorAccess (IAM allow) would not be evaluated before the SCP deny.

  • 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.

    When this WOULD be correct

    If a question described a role that assumes a long-running session and the error is 'Session token expired' or 'AccessDenied' due to temporary credentials timing out, then increasing session duration (e.g., to 12 hours) would resolve it.

  • 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.

    When this WOULD be correct

    In a scenario where an IAM role is allowed by an SCP but still denied access to a specific resource, and the question states that AWS Config rules are used to enforce compliance by automatically revoking permissions via a custom Lambda function, then D could be correct if the Config rule is misconfigured or not triggering the remediation.

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.

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

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.

AdministratorAccess is always evaluated before SCPs, so the SCP is ignored in production accounts.Wrong answer — click to see why

Why this is wrong here

SCPs are evaluated before IAM policies and can explicitly deny actions, overriding any IAM allow, including AdministratorAccess. The statement that AdministratorAccess is always evaluated before SCPs is incorrect.

★ When this WOULD be the correct answer

This option would be correct if the question described a scenario where an SCP allows an action but an IAM policy denies it, and the question asks about evaluation order. In that case, IAM deny overrides SCP allow, so AdministratorAccess (IAM allow) would not be evaluated before the SCP deny.

Why candidates choose this

Candidates may confuse the evaluation order of IAM policies and SCPs, mistakenly thinking that IAM policies are always evaluated first or that AdministratorAccess is an exception to SCPs.

The role needs a session duration of at least 12 hours before SCPs stop applying.Wrong answer — click to see why

Why this is wrong here

Session duration does not affect SCP evaluation; SCPs apply to all principals regardless of session length. The AccessDenied is due to an SCP explicitly denying the action, not a session duration issue.

★ When this WOULD be the correct answer

If a question described a role that assumes a long-running session and the error is 'Session token expired' or 'AccessDenied' due to temporary credentials timing out, then increasing session duration (e.g., to 12 hours) would resolve it.

Why candidates choose this

Candidates may confuse session duration limits with SCP evaluation, thinking that longer sessions bypass SCPs, or they may misremember that SCPs only apply to short-lived sessions.

The account needs an AWS Config rule to approve the snapshot action before IAM can work.Wrong answer — click to see why

Why this is wrong here

AWS Config rules can trigger remediation actions or evaluate compliance, but they do not grant or deny IAM permissions. The AccessDenied error is caused by an SCP explicit deny, not by the absence of a Config rule.

★ When this WOULD be the correct answer

In a scenario where an IAM role is allowed by an SCP but still denied access to a specific resource, and the question states that AWS Config rules are used to enforce compliance by automatically revoking permissions via a custom Lambda function, then D could be correct if the Config rule is misconfigured or not triggering the remediation.

Why candidates choose this

Candidates may confuse AWS Config's compliance evaluation with IAM authorization, thinking that Config rules act as a gatekeeper for API actions, similar to how SCPs or resource-based policies work.

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 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

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.