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
Private subnet route table rtb-priv:
- 10.0.0.0/16 local
- 0.0.0.0/0 -> nat-0a12bc34
Application logs:
2026-04-20T10:14:11Z ERROR could not reach https://secretsmanager.us-east-1.amazonaws.com:443
2026-04-20T10:14:11Z ERROR timeout after 30s while downloading s3://company-artifacts-builds
Finance note:
"NAT data processing charges increased 42% last month."
Based on the exhibit, a workload in private subnets must reach only Amazon S3 and AWS Secrets Manager. The team wants to eliminate internet exposure for those calls and reduce NAT gateway charges. What change should be made?
Exhibit
Private subnet route table rtb-priv:
- 10.0.0.0/16 local
- 0.0.0.0/0 -> nat-0a12bc34
Application logs:
2026-04-20T10:14:11Z ERROR could not reach https://secretsmanager.us-east-1.amazonaws.com:443
2026-04-20T10:14:11Z ERROR timeout after 30s while downloading s3://company-artifacts-builds
Finance note:
"NAT data processing charges increased 42% last month."
A
Move the instances into a public subnet and restrict inbound access with security groups.
Why wrong: That would expose the workload to the internet, which directly violates the private connectivity requirement. Security groups do not replace the need for private network design.
B
Add a NAT instance and disable the managed NAT gateway to lower cost.
Why wrong: A NAT instance still sends traffic through an internet path and adds operational overhead. It does not remove public exposure for AWS service calls.
C
Create an S3 gateway endpoint and a Secrets Manager interface endpoint with private DNS, then remove NAT dependency for those service calls.
S3 is best reached through a gateway VPC endpoint, while Secrets Manager requires an interface endpoint. With private DNS enabled, the application can resolve and reach those services without leaving AWS private networking. This removes the need for NAT traffic for those calls, cuts cost, and keeps service access off the public internet.
D
Use VPC peering to a shared services VPC and route all AWS service traffic through that VPC.
Why wrong: VPC peering does not provide native endpoints for AWS managed services and does not eliminate the internet path for those service APIs. It also adds routing complexity without solving the core problem.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Create an S3 gateway endpoint and a Secrets Manager interface endpoint with private DNS, then remove NAT dependency for those service calls.
Option C is correct because VPC Gateway Endpoints (for S3) and Interface Endpoints (for Secrets Manager) allow private subnet instances to access these services over the AWS network without traversing the internet or a NAT gateway. Enabling private DNS on the interface endpoint ensures that the default Secrets Manager DNS name resolves to the endpoint's private IP, eliminating the need for a NAT gateway for those calls and reducing costs.
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.
✗
Move the instances into a public subnet and restrict inbound access with security groups.
Why it's wrong here
That would expose the workload to the internet, which directly violates the private connectivity requirement. Security groups do not replace the need for private network design.
When this WOULD be correct
This option would be correct if the requirement was to allow internet access for the workload while restricting inbound traffic, and the team was not concerned about eliminating internet exposure or NATgateway charges.
✗
Add a NAT instance and disable the managed NAT gateway to lower cost.
Why it's wrong here
A NAT instance still sends traffic through an internet path and adds operational overhead. It does not remove public exposure for AWS service calls.
When this WOULD be correct
This option would be correct if the question asked to reduce NATgateway costs while still allowing internet-bound traffic (not just AWS services) and the team is okay with managing a single EC2 instance for NAT. For example, a workload that needs to reach external APIs or databases on the internet.
✓
Create an S3 gateway endpoint and a Secrets Manager interface endpoint with private DNS, then remove NAT dependency for those service calls.
Why this is correct
S3 is best reached through a gateway VPC endpoint, while Secrets Manager requires an interface endpoint. With private DNS enabled, the application can resolve and reach those services without leaving AWS private networking. This removes the need for NAT traffic for those calls, cuts cost, and keeps service access off the public internet.
Related concept
Read the scenario before looking for a memorised answer.
✗
Use VPC peering to a shared services VPC and route all AWS service traffic through that VPC.
Why it's wrong here
VPC peering does not provide native endpoints for AWS managed services and does not eliminate the internet path for those service APIs. It also adds routing complexity without solving the core problem.
When this WOULD be correct
This option would be correct if the question required accessing services or resources hosted in a shared services VPC (e.g., a centralized proxy or inspection appliance) and the workload needed to route all traffic through that VPC for compliance or monitoring, while still using NAT or internet for AWS service calls.
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 an S3 gateway endpoint and a Secrets Manager interface endpoint with private DNS, then remove NAT dependency for those service calls.Correct answer▾
Why this is correct
S3 is best reached through a gateway VPC endpoint, while Secrets Manager requires an interface endpoint. With private DNS enabled, the application can resolve and reach those services without leaving AWS private networking. This removes the need for NAT traffic for those calls, cuts cost, and keeps service access off the public internet.
✗Move the instances into a public subnet and restrict inbound access with security groups.Wrong answer — click to see why▾
Why this is wrong here
Moving instances to a public subnet exposes them to the internet, violating the requirement to eliminate internet exposure for S3 and Secrets Manager calls. The goal is to use private connectivity, not public subnets.
★ When this WOULD be the correct answer
This option would be correct if the requirement was to allow internet access for the workload while restricting inbound traffic, and the team was not concerned about eliminating internet exposure or NAT gateway charges.
Why candidates choose this
Candidates may think that placing instances in a public subnet with restrictive security groups is a simple way to provide outbound internet access without a NAT gateway, overlooking the requirement to avoid internet exposure entirely.
✗Add a NAT instance and disable the managed NAT gateway to lower cost.Wrong answer — click to see why▾
Why this is wrong here
A NAT instance still requires an internet gateway for outbound traffic to AWS services, which does not eliminate internet exposure. The goal is to remove internet dependency entirely, which is achieved by using VPC endpoints instead.
★ When this WOULD be the correct answer
This option would be correct if the question asked to reduce NAT gateway costs while still allowing internet-bound traffic (not just AWS services) and the team is okay with managing a single EC2 instance for NAT. For example, a workload that needs to reach external APIs or databases on the internet.
Why candidates choose this
Candidates may think a NAT instance is a cheaper alternative to a managed NAT gateway, but they overlook that it still requires an internet gateway and does not address the requirement to eliminate internet exposure for AWS service calls.
✗Use VPC peering to a shared services VPC and route all AWS service traffic through that VPC.Wrong answer — click to see why▾
Why this is wrong here
VPC peering does not provide private connectivity to AWS services like S3 and Secrets Manager; it only connects VPCs. The workload would still need internet or VPC endpoints to reach those services, and routing through another VPC adds complexity without eliminating internet exposure or NAT costs.
★ When this WOULD be the correct answer
This option would be correct if the question required accessing services or resources hosted in a shared services VPC (e.g., a centralized proxy or inspection appliance) and the workload needed to route all traffic through that VPC for compliance or monitoring, while still using NAT or internet for AWS service calls.
Why candidates choose this
Candidates may think VPC peering can route traffic to AWS services via another VPC that has internet access, misunderstanding that VPC peering does not support transitive routing to AWS public endpoints.
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 confuse Gateway Endpoints (for S3 and DynamoDB) with Interface Endpoints (for most other AWS services), and may incorrectly assume a single endpoint type works for all services, or that a NAT gateway is still required for private subnet traffic to AWS services.
Detailed technical explanation
How to think about this question
VPC Gateway Endpoints use prefix lists and route table entries to direct S3 traffic over the AWS backbone, while Interface Endpoints use AWS PrivateLink with Elastic Network Interfaces (ENIs) in the subnet. When private DNS is enabled on the Secrets Manager interface endpoint, the Route 53 private hosted zone automatically overrides the public DNS resolution for the service's regional endpoint, ensuring traffic stays within the VPC. This approach also avoids data transfer costs associated with NAT gateways and internet gateways for these specific service calls.
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 startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
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 an S3 gateway endpoint and a Secrets Manager interface endpoint with private DNS, then remove NAT dependency for those service calls. — Option C is correct because VPC Gateway Endpoints (for S3) and Interface Endpoints (for Secrets Manager) allow private subnet instances to access these services over the AWS network without traversing the internet or a NAT gateway. Enabling private DNS on the interface endpoint ensures that the default Secrets Manager DNS name resolves to the endpoint's private IP, eliminating the need for a NAT gateway for those calls and reducing costs.
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 →
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.