Courseiva
Design Resilient ArchitectureshardMultiple ChoiceObjective-mapped

SAA-C03 at-least-once delivery Practice Question

A patient portal must process every event at least once, but duplicate processing is acceptable if the consumer handles idempotency. Which eventing approach is most suitable? The team wants the control to be enforceable during normal operations.

⚠ Common exam trap

Test-takers frequently confuse 'at-least-once' delivery with 'exactly-once' delivery, or incorrectly assume that UDP or in-memory queues can provide reliable event processing, when in fact only a managed queue service like SQS with idempotent consumers meets the stated requirement for enforceability during normal operations.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Use Amazon SQS standard queue and design consumers to be idempotent

Amazon SQS standard queues provide at-least-once delivery, ensuring every event is processed at least once, which matches the requirement. Duplicate processing is acceptable because the team can design consumers to be idempotent, handling duplicates without side effects. SQS is a fully managed, scalable, and durable service that enforces this behavior during normal operations without requiring custom infrastructure.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Use an in-memory queue on one EC2 instance

    Why it's wrong here

    A single in-memory queue is not durable or highly available.

  • Use UDP messages sent directly to workers

    Why it's wrong here

    UDP does not provide durable at-least-once delivery.

  • Use Amazon SQS standard queue and design consumers to be idempotent

    Why this is correct

    SQS standard queues provide at-least-once delivery and high throughput; consumers must handle occasional duplicates.

  • Use CloudFront signed URLs

    Why it's wrong here

    Signed URLs control content access and do not provide event delivery.

About these practice questions

One of 302 original SAA-C03 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.