easymultiple choiceObjective-mapped

A latency-sensitive API is implemented with AWS Lambda. During traffic ramp-ups, users sometimes experience slow responses due to cold starts. The team wants to ensure fast initialization for a baseline level of concurrent requests. Which AWS feature should they use?

Question 1easymultiple choice
Full question →

A latency-sensitive API is implemented with AWS Lambda. During traffic ramp-ups, users sometimes experience slow responses due to cold starts. The team wants to ensure fast initialization for a baseline level of concurrent requests. Which AWS feature 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

Best answer

Lambda provisioned concurrency

Provisioned concurrency pre-initializes a specified number of Lambda execution environments and keeps them ready for invocation. This reduces or eliminates cold starts for the configured baseline concurrency during traffic ramp-ups.

B

Distractor review

Increase reserved instances for EC2

Reserved Instances apply to EC2 capacity. They do not warm or pre-initialize Lambda execution environments, so they do not directly prevent Lambda cold starts.

C

Distractor review

Enable S3 event notifications for every request to the API

S3 event notifications trigger when objects are created/updated in S3. They are not part of Lambda cold start mitigation for API invocations and would add unnecessary event-processing complexity without warming Lambda in a reliable way.

D

Distractor review

Decrease the function timeout to reduce execution variability

Changing the timeout affects how long Lambda can run before terminating, not whether the runtime environment is pre-initialized. It does not address cold start latency and may cause failures for requests that require more time.

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: Lambda provisioned concurrency — Use Lambda provisioned concurrency. It is designed specifically to provide predictable, low-latency Lambda performance by keeping a defined number of execution environments already initialized. By setting a baseline provisioned concurrency level (for example, on a function alias), the platform can serve invocations immediately during normal traffic and ramp-ups, greatly reducing cold-start-related slow responses. EC2 Reserved Instances do not affect Lambda runtime initialization. S3 event notifications are unrelated to the Lambda invocation path and do not provide reliable warming for API traffic. Decreasing the function timeout does not change cold start behavior and can increase error rates if requests legitimately require more time.

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.