hardmulti selectObjective-mapped

A startup has an HTTP API with highly unpredictable traffic from mobile devices. Each request performs lightweight validation, writes an event record, and triggers downstream notifications. The current EC2 fleet stays mostly idle, and the team wants to reduce infrastructure management and pay only for usage. Which two changes best fit the requirement? Select two.

Question 1hardmulti select
Full question →

A startup has an HTTP API with highly unpredictable traffic from mobile devices. Each request performs lightweight validation, writes an event record, and triggers downstream notifications. The current EC2 fleet stays mostly idle, and the team wants to reduce infrastructure management and pay only for usage. Which two changes best fit the requirement? Select two.

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

Best answer

Place Amazon API Gateway in front of AWS Lambda functions for request handling.

API Gateway plus Lambda fits spiky request traffic well because it removes server management and charges are based on actual use.

B

Distractor review

Keep the EC2 fleet and add more instances so the idle cost is less noticeable.

Adding more always-on servers increases idle spend and directly contradicts the goal of paying only for usage.

C

Best answer

Use Amazon SQS to buffer notification work and decouple it from the request path.

SQS absorbs bursts and separates the user-facing request from downstream processing, improving cost efficiency and operational resilience.

D

Distractor review

Move the API to an Application Load Balancer only, without changing compute.

An ALB can distribute traffic, but it does not remove the need to manage EC2 instances or eliminate idle capacity.

E

Distractor review

Store runtime secrets in user data on each instance.

This does not address variable traffic or cost optimization, and it creates a poor secret-handling pattern.

Common exam trap

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Technical deep dive

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

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?

Static NAT maps one inside address to one outside address.

What is the correct answer to this question?

The correct answer is: Place Amazon API Gateway in front of AWS Lambda functions for request handling. — API Gateway and Lambda are a strong fit for unpredictable, short-lived request processing because they remove server provisioning and scale automatically with demand. SQS adds decoupling for notification work so the request path stays lightweight while downstream processes can absorb bursts. This combination reduces idle EC2 cost and operational overhead while keeping the system responsive under changing traffic patterns. Why others are wrong: Keeping or expanding EC2 capacity leaves the team paying for idle servers. An ALB by itself is only a traffic distributor; it does not reduce compute management. Storing secrets in user data is a security anti-pattern and has nothing to do with workload elasticity or cost reduction.

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.