mediummultiple choiceObjective-mapped

You have an S3 bucket that stores customer-specific private files. You want to serve these files through CloudFront, where clients must use signed cookies (or signed URLs) to access the content. In addition, you need to block common web exploits and rate-limit suspicious traffic at the edge. Which design best meets these requirements?

Question 1mediummultiple choice
Full question →

You have an S3 bucket that stores customer-specific private files. You want to serve these files through CloudFront, where clients must use signed cookies (or signed URLs) to access the content. In addition, you need to block common web exploits and rate-limit suspicious traffic at the edge. Which design best meets these requirements?

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

Keep the S3 bucket private, configure CloudFront with Origin Access Control so only CloudFront can access the origin, require signed cookies/URLs for viewers, and associate an AWS WAF web ACL with CloudFront for blocking and rate limiting.

This ensures S3 remains non-public while CloudFront becomes the only origin access path using Origin Access Control. Signed cookies/URLs enforce authenticated authorization at the edge for each request. Attaching AWS WAF adds request inspection and protections like rate limiting and exploit blocking.

B

Distractor review

Enable public read access on the S3 bucket and rely on WAF alone for authorization because WAF can validate signatures.

WAF is not meant to replace authorization signatures for content protection, and public S3 access undermines security. Even if WAF blocks some traffic, public access allows requests that bypass your intended controls if misconfigured. Signed cookies/URLs are the appropriate edge authorization mechanism.

C

Distractor review

Configure CloudFront with signed URLs but do not change the S3 bucket access settings; leaving public access enabled is acceptable since CloudFront can filter traffic.

If the S3 bucket remains public, clients can bypass CloudFront entirely by accessing the S3 object URLs directly. Signed URLs protect only requests going through CloudFront behaviors, not direct S3 origin access. The origin must be restricted so content cannot be retrieved outside CloudFront.

D

Distractor review

Use WAF at CloudFront but omit signed cookies/URLs because rate limiting and exploit blocking already provide access control for private files.

WAF protections can reduce threats but do not implement business authorization for specific customers. Rate limiting and exploit blocking do not prevent an authorized user from sharing links or retrieving content without required authentication. Signed cookies/URLs are specifically for controlling content access.

Common exam trap

Common exam trap: authentication is not authorization

Logging in proves the user can authenticate. It does not automatically mean the user is allowed to enter privileged or configuration mode. Watch for AAA authorization, privilege level and command authorization details.

Technical deep dive

How to think about this question

This kind of question is testing the difference between identity and permission. A user may successfully log in to a router because authentication is working, but still fail to enter configuration mode because authorization is missing, misconfigured or mapped to a lower privilege level.

KKey Concepts to Remember

  • Authentication checks who the user is.
  • Authorization controls what the user is allowed to do after login.
  • Privilege levels affect access to EXEC and configuration commands.
  • AAA, TACACS+ and RADIUS can separate login success from command access.

TExam Day Tips

  • Do not assume successful login means full administrative access.
  • Look for words such as cannot enter configuration mode, privilege level, authorization or command access.
  • Separate login problems from permission problems before choosing the answer.

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?

Authentication checks who the user is.

What is the correct answer to this question?

The correct answer is: Keep the S3 bucket private, configure CloudFront with Origin Access Control so only CloudFront can access the origin, require signed cookies/URLs for viewers, and associate an AWS WAF web ACL with CloudFront for blocking and rate limiting. — The secure pattern for private content delivered by CloudFront is: keep the S3 origin private so objects cannot be fetched directly, use CloudFront (via Origin Access Control) as the only authorized origin caller, and require signed cookies/URLs to authorize each viewer request. To address common exploits and suspicious traffic patterns, associate an AWS WAF web ACL with the CloudFront distribution. This combination enforces both content authorization (signed access) and edge threat mitigation (WAF rules). Option B and C fail because leaving S3 public allows bypassing CloudFront controls and violates private content requirements. Option D uses WAF for threat mitigation only; it does not provide customer-specific authorization. WAF can block or rate limit malicious requests, but without signed cookies/URLs it cannot ensure only intended principals can retrieve the protected objects.

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.