Question 178 of 1,040
Design Secure ArchitecturesmediumMultiple SelectObjective-mapped

SAA-C03 Design Secure Architectures Practice Question

This SAA-C03 practice question tests your understanding of design secure architectures. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A company runs a customer portal in us-east-1 and a warm standby in us-west-2. The DNS name must send users to us-east-1 while it is healthy and automatically switch to us-west-2 if the primary application endpoint stops responding. Which two actions should the architect take? Select two.

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "primary"

    Why it matters: Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

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

Create Route 53 failover records for the same DNS name with primary and secondary targets.

Option A is correct because Route 53 failover routing allows you to configure active-passive failover by associating a primary and secondary record with the same DNS name. When the primary endpoint fails, Route 53 automatically returns the secondary record's IP address, directing traffic to the warm standby in us-west-2. This directly meets the requirement for automatic failover based on endpoint health.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

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

  • Create Route 53 failover records for the same DNS name with primary and secondary targets.

    Why this is correct

    Failover routing is the Route 53 feature built for primary-to-secondary traffic shifting. It lets DNS answer with the primary target while health checks pass, then returns the secondary target when the primary becomes unhealthy.

    Clue confirmation

    The clue word "primary" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use latency-based routing so Route 53 always returns the lowest-latency Region.

    Why it's wrong here

    Latency-based routing improves performance selection, but it does not provide a simple primary-and-backup failover pattern. Users could still be routed to either Region based on latency, not health-driven standby behavior.

    When this WOULD be correct

    A company wants to direct users to the region that provides the best performance (lowest latency) without requiring failover to a specific standby region. For example, a global content delivery application where all regions are active and the goal is to minimize response times.

  • Associate a Route 53 health check with the primary endpoint that monitors application availability.

    Why this is correct

    A health check tells Route 53 whether the primary site is actually responding. Without it, Route 53 cannot reliably know when to stop returning the primary record and shift traffic to the backup endpoint.

    Clue confirmation

    The clue word "primary" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use weighted records with a 50/50 split to balance traffic across both Regions.

    Why it's wrong here

    Weighted routing is useful for traffic splitting and gradual migration, but it does not automatically behave like a failover policy. A 50/50 split would continue sending traffic to the unhealthy Region.

    When this WOULD be correct

    If the requirement were to distribute traffic evenly across two active regions for load balancing or A/B testing, weighted records with a 50/50 split would be appropriate.

  • Place the standby application in a private hosted zone so only internal systems can resolve it.

    Why it's wrong here

    A private hosted zone restricts DNS visibility to associated VPCs, but it does not create internet-facing failover behavior. This choice solves name resolution scope, not automatic health-based regional switching.

    When this WOULD be correct

    When you need to resolve a domain name for internal resources (e.g., an internal load balancer) that should not be accessible from the internet, you would place the record in a private hosted zone associated with a VPC.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The SAA-C03 exam frequently reuses these exact scenarios with slightly different constraints.

Create Route 53 failover records for the same DNS name with primary and secondary targets.Correct answer

Why this is correct

Failover routing is the Route 53 feature built for primary-to-secondary traffic shifting. It lets DNS answer with the primary target while health checks pass, then returns the secondary target when the primary becomes unhealthy.

Use latency-based routing so Route 53 always returns the lowest-latency Region.Wrong answer — click to see why

Why this is wrong here

Latency-based routing directs users to the region with the lowest latency, not to a primary region with automatic failover. It does not support health checks to trigger failover when the primary endpoint becomes unhealthy.

★ When this WOULD be the correct answer

A company wants to direct users to the region that provides the best performance (lowest latency) without requiring failover to a specific standby region. For example, a global content delivery application where all regions are active and the goal is to minimize response times.

Why candidates choose this

Candidates may confuse latency-based routing with failover, assuming that the lowest-latency region will naturally be the primary and that Route 53 will switch to another region if the primary is unhealthy, but latency routing does not incorporate health checks for failover.

Use weighted records with a 50/50 split to balance traffic across both Regions.Wrong answer — click to see why

Why this is wrong here

Weighted records distribute traffic based on weights, not health. A 50/50 split would send half the traffic to us-west-2 even when us-east-1 is healthy, violating the requirement to send users to us-east-1 unless it fails.

★ When this WOULD be the correct answer

If the requirement were to distribute traffic evenly across two active regions for load balancing or A/B testing, weighted records with a 50/50 split would be appropriate.

Why candidates choose this

Candidates may think weighted routing can be used for failover by setting weights to 100/0 and adjusting on failure, but this is manual and not automatic; they overlook that failover routing is designed for this exact scenario.

Place the standby application in a private hosted zone so only internal systems can resolve it.Wrong answer — click to see why

Why this is wrong here

The standby application needs to be publicly accessible for failover traffic; a private hosted zone would prevent Route 53 from routing external users to it.

★ When this WOULD be the correct answer

When you need to resolve a domain name for internal resources (e.g., an internal load balancer) that should not be accessible from the internet, you would place the record in a private hosted zone associated with a VPC.

Why candidates choose this

Candidates may confuse the need for a separate DNS namespace for disaster recovery with the concept of a private hosted zone, thinking it isolates the standby environment.

Analysis generated from the official SAA-C03blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse failover routing with latency-based or weighted routing, assuming any routing policy that distributes traffic can handle failover, but only failover routing with an associated health check provides automatic, health-based switching between a primary and secondary endpoint.

Detailed technical explanation

How to think about this question

Route 53 failover records rely on health checks that monitor the primary endpoint via HTTP, HTTPS, or TCP at configurable intervals (default 30 seconds). When a health check fails consecutively (default 3 failures), Route 53 marks the primary as unhealthy and begins returning the secondary record's value, with a DNS TTL (typically 60 seconds) controlling how quickly clients pick up the change. This mechanism is defined in the Route 53 DNS failover documentation and is distinct from simple DNS round-robin or latency-based routing.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.

Visual reference

Client Recursive Resolver Root DNS (13 root servers) TLD DNS (.com, .org, …) Authoritative example.com query IP addr answer

Quick reference

Common DNS Record Types

RecordPurposeExample
AIPv4 address mappingexample.com → 93.184.216.34
AAAAIPv6 address mappingexample.com → 2606:2800::1
CNAMEAlias to another hostnamewww → example.com
MXMail server for domainexample.com → mail.example.com (priority 10)
TXTText data (SPF, DKIM, verification)v=spf1 include:_spf.example.com ~all
NSAuthoritative name serversexample.com NS ns1.example.com
PTRReverse DNS (IP → hostname)34.216.184.93.in-addr.arpa → example.com
SOAZone authority recordPrimary NS, admin email, serial, TTL defaults

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

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.

Practice this exam

Start a free SAA-C03 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SAA-C03 question test?

Design Secure Architectures — This question tests Design Secure Architectures — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Create Route 53 failover records for the same DNS name with primary and secondary targets. — Option A is correct because Route 53 failover routing allows you to configure active-passive failover by associating a primary and secondary record with the same DNS name. When the primary endpoint fails, Route 53 automatically returns the secondary record's IP address, directing traffic to the warm standby in us-west-2. This directly meets the requirement for automatic failover based on endpoint health.

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

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "primary". Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More SAA-C03 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

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.