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.
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
A
Create a gateway endpoint for S3 and interface endpoints for Systems Manager, EC2Messages, and SSMMessages.
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.
B
Add a more permissive security group rule allowing outbound 0.0.0.0/0 on all ports.
Why wrong: 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.
C
Replace the NAT gateway with a network ACL that allows ephemeral ports to the internet.
Why wrong: A network ACL is stateless filtering, not a connectivity mechanism. It cannot provide private access to AWS services.
D
Move the instances to public subnets so they can reach AWS services directly.
Why wrong: Public subnets would expose the instances to internet routing, which conflicts with the requirement to avoid internet traversal.
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.
When this WOULD be correct
This option would be correct in a scenario where the question asks for the simplest way to allow outbound internet access from private EC2 instances, without any restriction on using the internet or NATgateway, and the goal is just to enable general outbound connectivity.
✗
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.
When this WOULD be correct
If the question asked how to restrict outbound traffic from a public subnet to the internet using only network ACLs (e.g., allow ephemeral ports while blocking other traffic), then replacing a NATgateway with a properly configured network ACL could be correct, assuming instances have public IPs or are behind an internet gateway.
✗
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.
When this WOULD be correct
If the question asked for the simplest way to allow instances to reach the internet (not just AWS services) without a NATgateway, and security concerns were not a factor, moving instances to public subnets with public IPs and appropriate security groups would enable direct internet access.
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.
✓Create a gateway endpoint for S3 and interface endpoints for Systems Manager, EC2Messages, and SSMMessages.Correct answer▾
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.
✗Add a more permissive security group rule allowing outbound 0.0.0.0/0 on all ports.Wrong answer — click to see why▾
Why this is wrong here
This option does not address the requirement to avoid sending traffic through the internet or a NAT gateway; a permissive security group rule still routes traffic via the internet or NAT gateway, not through private VPC endpoints.
★ When this WOULD be the correct answer
This option would be correct in a scenario where the question asks for the simplest way to allow outbound internet access from private EC2 instances, without any restriction on using the internet or NAT gateway, and the goal is just to enable general outbound connectivity.
Why candidates choose this
Candidates may think that allowing all outbound traffic via a security group is a quick fix, overlooking the specific requirement to avoid internet or NAT gateway paths and the need for private connectivity via endpoints.
✗Replace the NAT gateway with a network ACL that allows ephemeral ports to the internet.Wrong answer — click to see why▾
Why this is wrong here
Network ACLs cannot replace NAT gateways for outbound internet access; they are stateless and only filter traffic, not provide NAT. Private instances still need a NAT device to reach the internet, and Systems Manager requires VPC endpoints, not just internet access.
★ When this WOULD be the correct answer
If the question asked how to restrict outbound traffic from a public subnet to the internet using only network ACLs (e.g., allow ephemeral ports while blocking other traffic), then replacing a NAT gateway with a properly configured network ACL could be correct, assuming instances have public IPs or are behind an internet gateway.
Why candidates choose this
Candidates may confuse network ACLs with NAT gateways, thinking ACLs can provide outbound connectivity by allowing ephemeral ports, or they may underestimate the need for NAT to translate private IPs.
✗Move the instances to public subnets so they can reach AWS services directly.Wrong answer — click to see why▾
Why this is wrong here
Moving instances to public subnets exposes them directly to the internet, which violates the requirement to avoid sending traffic through the internet. Private instances should remain in private subnets and use VPC endpoints for secure, private connectivity to AWS services.
★ When this WOULD be the correct answer
If the question asked for the simplest way to allow instances to reach the internet (not just AWS services) without a NAT gateway, and security concerns were not a factor, moving instances to public subnets with public IPs and appropriate security groups would enable direct internet access.
Why candidates choose this
Candidates may think that public subnets provide direct access to all AWS services, overlooking that public subnets still route traffic through the internet, and that private connectivity via VPC endpoints is more secure and cost-effective for services like S3 and Systems Manager.
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 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.
Visual reference
Quick reference
AWS S3 Storage Class Comparison
Storage Class
Min Duration
Retrieval
Use Case
S3 Standard
None
Immediate
Frequently accessed data
S3 Standard-IA
30 days
Immediate
Infrequent access, rapid retrieval
S3 One Zone-IA
30 days
Immediate
Non-critical infrequent data
S3 Intelligent-Tiering
None
Immediate–hours
Unknown or changing access patterns
S3 Glacier Instant
90 days
Milliseconds
Archive with instant retrieval
S3 Glacier Flexible
90 days
Minutes–hours
Archive, flexible retrieval
S3 Glacier Deep Archive
180 days
Hours
Long-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.
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 →
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.
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.
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.
Sign in to join the discussion.