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

Quick Answer

The answer is to create a gateway endpoint for S3 and interface endpoints for Systems Manager, EC2Messages, and SSMMessages. This works because gateway endpoints use prefix lists and route table entries to let private EC2 instances reach S3 over AWS’s private network, bypassing the internet and NAT gateways entirely, while interface endpoints leverage AWS PrivateLink to provide private, DNS-based connectivity to Systems Manager services for secure instance management. On the SAA-C03 exam, this scenario tests your understanding of when to use gateway versus interface VPC endpoints—a common trap is assuming all endpoints are interface-based, but S3 and DynamoDB uniquely require gateway endpoints. Remember the memory tip: “S3 is a gateway, management is an interface”—if the service manages instances (like Systems Manager), use interface endpoints; if it’s object storage, use a gateway endpoint.

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.

Exhibit

Network design excerpt:

VPC: 10.40.0.0/16
Private subnet route table:
- 10.40.0.0/16 local
- 0.0.0.0/0 -> nat-0c91f2a7d3b1e3

Instance behavior:
- patching scripts fail when downloading packages from S3
- AWS Systems Manager Session Manager shows: 'Target not connected'
- Security team wants to remove NAT gateway usage for these workloads

Based on the exhibit, what is the best way to let private EC2 instances reach Amazon S3 and AWS Systems Manager without sending traffic through the internet or a NAT gateway?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "best"

    Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.

Question 1mediummultiple choice
Read the full NAT/PAT explanation →

Exhibit

Network design excerpt:

VPC: 10.40.0.0/16
Private subnet route table:
- 10.40.0.0/16 local
- 0.0.0.0/0 -> nat-0c91f2a7d3b1e3

Instance behavior:
- patching scripts fail when downloading packages from S3
- AWS Systems Manager Session Manager shows: 'Target not connected'
- Security team wants to remove NAT gateway usage for these workloads

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

Create a gateway endpoint for S3 and interface endpoints for Systems Manager, EC2Messages, and SSMMessages.

Gateway endpoints for S3 allow private EC2 instances to access S3 via AWS's private network without traversing the internet or a NAT gateway, using prefix lists and route table entries. Interface endpoints for Systems Manager, EC2Messages, and SSMMessages provide private connectivity to AWS Systems Manager via PrivateLink, enabling secure instance management without public IPs or NAT.

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.

  • Create a gateway endpoint for S3 and interface endpoints for Systems Manager, EC2Messages, and SSMMessages.

    Why this is correct

    This keeps traffic on the AWS network and avoids NAT or internet traversal. S3 uses a gateway endpoint, while Systems Manager needs interface endpoints for the control and messaging services that Session Manager depends on. It directly addresses both the S3 download problem and the missing Session Manager connectivity in a private subnet design.

    Clue confirmation

    The clue word "best" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Add a more permissive security group rule allowing outbound 0.0.0.0/0 on all ports.

    Why it's wrong here

    Security groups control instance traffic, but they do not provide private service connectivity. Outbound internet access would still require a route through NAT or an internet gateway.

  • Replace the NAT gateway with a network ACL that allows ephemeral ports to the internet.

    Why it's wrong here

    A network ACL is stateless filtering, not a connectivity mechanism. It cannot provide private access to AWS services.

  • Move the instances to public subnets so they can reach AWS services directly.

    Why it's wrong here

    Public subnets would expose the instances to internet routing, which conflicts with the requirement to avoid internet traversal.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume all AWS services can be accessed via a single endpoint type, but S3 requires a gateway endpoint (route table-based) while Systems Manager and its sub-services require interface endpoints (PrivateLink-based), and failing to create all three (including EC2Messages and SSMMessages) will break Systems Manager functionality.

Detailed technical explanation

How to think about this question

Gateway endpoints use route table entries with prefix lists for S3 (e.g., com.amazonaws.region.s3) to direct traffic over the AWS backbone, while interface endpoints use Elastic Network Interfaces (ENIs) with security groups in the VPC, leveraging AWS PrivateLink to connect to services like Systems Manager via DNS resolution. A common subtlety is that S3 requires a gateway endpoint, not an interface endpoint, because S3 traffic uses prefix-based routing, whereas Systems Manager and its sub-services (EC2Messages, SSMMessages) require interface endpoints for HTTPS-based API calls. In real-world scenarios, this hybrid endpoint approach is critical for hybrid cloud environments where instances must be managed and store logs in S3 without exposing them to the public internet.

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.

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: Create a gateway endpoint for S3 and interface endpoints for Systems Manager, EC2Messages, and SSMMessages. — Gateway endpoints for S3 allow private EC2 instances to access S3 via AWS's private network without traversing the internet or a NAT gateway, using prefix lists and route table entries. Interface endpoints for Systems Manager, EC2Messages, and SSMMessages provide private connectivity to AWS Systems Manager via PrivateLink, enabling secure instance management without public IPs or NAT.

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.

Are there clue words in this question I should notice?

Yes — watch for: "best". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.

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.