mediummultiple choiceObjective-mapped

An engineering team runs application servers in private subnets. The instances must download patches and software packages from Amazon S3, but the company does not want the traffic to traverse the internet or a NAT gateway. Which design should they use?

Question 1mediummultiple choice
Full question →

An engineering team runs application servers in private subnets. The instances must download patches and software packages from Amazon S3, but the company does not want the traffic to traverse the internet or a NAT gateway. Which design should they use?

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Distractor review

Add an internet gateway to the VPC and route private subnet traffic through it.

An internet gateway exposes the VPC to the public internet and does not keep traffic private.

B

Best answer

Use an Amazon S3 gateway VPC endpoint in the route tables for the private subnets.

A gateway VPC endpoint for S3 keeps traffic between the VPC and S3 on the AWS network without using the public internet or a NAT gateway. This is the standard private-connectivity pattern for S3 access from private subnets. It also simplifies the architecture and reduces NAT-related cost while preserving access to the bucket from workloads that must remain nonpublic.

C

Distractor review

Use a security group rule that allows outbound traffic to the S3 public IP range.

Security groups control traffic, but they do not create private connectivity to S3 or prevent internet traversal by themselves.

D

Distractor review

Create a VPC peering connection to the S3 service VPC.

Amazon S3 is not accessed through customer-managed VPC peering connections, so this is not a valid design.

Common exam trap

Common exam trap: usable hosts are not the same as total addresses

Subnetting questions often tempt you into counting all addresses. In normal IPv4 subnets, the network and broadcast addresses are not usable host addresses.

Technical deep dive

How to think about this question

Subnetting questions test whether you can identify the network, broadcast address, usable range, mask and correct subnet. Slow down enough to calculate the block size correctly.

KKey Concepts to Remember

  • CIDR notation defines the prefix length.
  • Block size helps identify subnet boundaries.
  • Network and broadcast addresses are not usable hosts in normal IPv4 subnets.
  • The required host count determines the smallest suitable subnet.

TExam Day Tips

  • Write the block size before choosing the subnet.
  • Check whether the question asks for hosts, subnets or a specific address range.
  • Do not confuse /24, /25, /26 and /27 host counts.

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.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this SAA-C03 question test?

CIDR notation defines the prefix length.

What is the correct answer to this question?

The correct answer is: Use an Amazon S3 gateway VPC endpoint in the route tables for the private subnets. — An S3 gateway VPC endpoint is the right answer because it allows private subnet resources to reach S3 without leaving the AWS private network or using a NAT gateway. This is the preferred pattern when the requirement is private access to S3 and reduced operational cost. Security groups and route tables still matter, but the endpoint is what actually provides private service connectivity. Why others are wrong: An internet gateway makes the traffic public, which violates the requirement. A security group can permit outbound traffic, but it cannot replace a private endpoint or remove the need for internet routing. VPC peering is not how you connect to an AWS-managed service like S3, so that option is invalid.

What should I do if I get this SAA-C03 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.