- A
Use a scheduled Amazon EC2 Auto Scaling group that keeps a minimum of one instance running at all times.
Why wrong: Keeping a minimum instance reduces savings and still requires EC2 operational management.
- B
Use an EventBridge schedule to run the report as an Amazon ECS task on AWS Fargate and write results to S3.
Fargate allows the containerized job to run only when scheduled, so the team pays for task runtime instead of keeping an EC2 instance always on.
- C
Use AWS Lambda triggered by an EventBridge schedule at 02:00 UTC and write results to S3.
Why wrong: Lambda has a 15-minute maximum runtime, so it cannot reliably handle a workload that may take up to 45 minutes.
- D
Use an EMR cluster provisioned daily with manual teardown to ensure the instance is always available before 02:00.
Why wrong: EMR provisioning overhead and operational complexity are typically unnecessary for a daily report process.
SAA-C03 Design Cost-Optimized Architectures Practice Question
This SAA-C03 practice question tests your understanding of design cost-optimized architectures. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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 marketing team runs a report-generation process that must execute once per day at 02:00 UTC. It usually completes in 10315 minutes, but sometimes takes up to 45 minutes due to varying data volumes. They currently run the workload on an EC2 instance that is always on, which wastes money during off-hours. The team wants to minimize operational overhead and pay mainly for actual execution time.
What is the best architecture choice?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"always"Why it matters: Absolute qualifier. An answer using 'always' is only correct if there are genuinely no exceptions — absolute statements are often wrong in networking.
Clue:
"minimum / minimize"Why it matters: Asks for the least resource use — fewest addresses, smallest subnet, lowest overhead. Eliminate over-provisioned options even if they would technically work.
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 an EventBridge schedule to run the report as an Amazon ECS task on AWS Fargate and write results to S3.
Amazon ECS on AWS Fargate is the best choice because it eliminates the need to manage servers, scales automatically, and charges only for the vCPU and memory resources consumed during task execution. The EventBridge schedule triggers the Fargate task at 02:00 UTC, and the report is written to S3, which provides durable, cost-effective storage. This architecture minimizes operational overhead and cost by avoiding an always-on EC2 instance.
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.
- ✗
Use a scheduled Amazon EC2 Auto Scaling group that keeps a minimum of one instance running at all times.
Why it's wrong here
Keeping a minimum instance reduces savings and still requires EC2 operational management.
When this WOULD be correct
A scheduled Auto Scaling group with a minimum of one instance is correct when the workload requires a persistent server (e.g., for real-time processing or stateful applications) and cost optimization is not the primary concern.
- ✓
Use an EventBridge schedule to run the report as an Amazon ECS task on AWS Fargate and write results to S3.
Why this is correct
Fargate allows the containerized job to run only when scheduled, so the team pays for task runtime instead of keeping an EC2 instance always on.
Clue confirmation
The clue words "always", "minimum / minimize" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Use AWS Lambda triggered by an EventBridge schedule at 02:00 UTC and write results to S3.
Why it's wrong here
Lambda has a 15-minute maximum runtime, so it cannot reliably handle a workload that may take up to 45 minutes.
When this WOULD be correct
A question where the task completes in under 15 minutes, requires no containerization, and benefits from Lambda's serverless, pay-per-execution model with minimal operational overhead.
- ✗
Use an EMR cluster provisioned daily with manual teardown to ensure the instance is always available before 02:00.
Why it's wrong here
EMR provisioning overhead and operational complexity are typically unnecessary for a daily report process.
When this WOULD be correct
This option would be correct if the workload involved large-scale data processing (e.g., running Spark or Hive jobs on terabytes of data) that requires a distributed cluster, and the team already has operational processes in place to manage cluster lifecycle automatically (e.g., using AWS Step Functions or Lambda for teardown). The question would emphasize cost savings by running only when needed, but not prioritize minimizing overhead.
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.
✓Use an EventBridge schedule to run the report as an Amazon ECS task on AWS Fargate and write results to S3.Correct answer▾
Why this is correct
Fargate allows the containerized job to run only when scheduled, so the team pays for task runtime instead of keeping an EC2 instance always on.
✗Use a scheduled Amazon EC2 Auto Scaling group that keeps a minimum of one instance running at all times.Wrong answer — click to see why▾
Why this is wrong here
This option keeps an instance running at all times, which wastes money during off-hours and does not minimize operational overhead or pay mainly for actual execution time.
★ When this WOULD be the correct answer
A scheduled Auto Scaling group with a minimum of one instance is correct when the workload requires a persistent server (e.g., for real-time processing or stateful applications) and cost optimization is not the primary concern.
Why candidates choose this
Candidates may think Auto Scaling is cost-effective, but the 'minimum one instance' requirement contradicts the goal of paying only for execution time.
✗Use AWS Lambda triggered by an EventBridge schedule at 02:00 UTC and write results to S3.Wrong answer — click to see why▾
Why this is wrong here
AWS Lambda has a maximum execution timeout of 15 minutes, but the report-generation process can take up to 45 minutes, so Lambda cannot handle the entire workload.
★ When this WOULD be the correct answer
A question where the task completes in under 15 minutes, requires no containerization, and benefits from Lambda's serverless, pay-per-execution model with minimal operational overhead.
Why candidates choose this
Candidates see 'EventBridge schedule' and 'serverless' and assume Lambda is the simplest choice, overlooking the 15-minute timeout limit.
✗Use an EMR cluster provisioned daily with manual teardown to ensure the instance is always available before 02:00.Wrong answer — click to see why▾
Why this is wrong here
Provisioning an EMR cluster daily with manual teardown introduces significant operational overhead, which contradicts the requirement to minimize operational overhead. Additionally, EMR is designed for big data processing (e.g., Spark, Hive) and is overkill for a simple report-generation task, leading to higher costs and complexity.
★ When this WOULD be the correct answer
This option would be correct if the workload involved large-scale data processing (e.g., running Spark or Hive jobs on terabytes of data) that requires a distributed cluster, and the team already has operational processes in place to manage cluster lifecycle automatically (e.g., using AWS Step Functions or Lambda for teardown). The question would emphasize cost savings by running only when needed, but not prioritize minimizing overhead.
Why candidates choose this
Candidates may think EMR is suitable for any 'report generation' task, especially if they associate it with data processing. The manual teardown might seem like a simple way to save costs, but they overlook the operational burden and the fact that simpler services (like ECS Fargate) can handle the workload more efficiently.
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 may choose AWS Lambda without considering its 15-minute execution timeout, which cannot handle the 45-minute maximum runtime of this report-generation process.
Detailed technical explanation
How to think about this question
AWS Fargate runs containers without managing the underlying infrastructure, and its billing model charges per second for the vCPU and memory allocated to the task, making it ideal for batch jobs with variable durations. The EventBridge schedule uses a cron expression (e.g., 'cron(0 2 * * ? *)') to trigger the ECS task exactly at 02:00 UTC, and the task definition can specify the container image, resource limits, and environment variables. Writing results to S3 ensures the output is stored durably and can be accessed later without needing persistent compute resources.
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 startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
Quick reference
AWS S3 Storage Class Comparison
| Storage Class | Min Duration | Retrieval | Use Case |
|---|---|---|---|
| S3 Standard | None | Immediate | Frequently accessed data |
| S3 Standard-IA | 30 days | Immediate | Infrequent access, rapid retrieval |
| S3 One Zone-IA | 30 days | Immediate | Non-critical infrequent data |
| S3 Intelligent-Tiering | None | Immediate–hours | Unknown or changing access patterns |
| S3 Glacier Instant | 90 days | Milliseconds | Archive with instant retrieval |
| S3 Glacier Flexible | 90 days | Minutes–hours | Archive, flexible retrieval |
| S3 Glacier Deep Archive | 180 days | Hours | Long-term compliance archive |
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.
- →
Design Cost-Optimized Architectures — study guide chapter
Learn the concepts, then practise the questions
- →
Design Cost-Optimized Architectures practice questions
Targeted practice on this topic area only
- →
All SAA-C03 questions
1,040 questions across all exam domains
- →
SAA-C03 study guide
Full concept coverage aligned to exam objectives
- →
SAA-C03 practice test guide
How to use practice tests most effectively before exam day
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.
Design Secure Architectures practice questions
Practise SAA-C03 questions linked to Design Secure Architectures.
Design Resilient Architectures practice questions
Practise SAA-C03 questions linked to Design Resilient Architectures.
Design High-Performing Architectures practice questions
Practise SAA-C03 questions linked to Design High-Performing Architectures.
Design Cost-Optimized Architectures practice questions
Practise SAA-C03 questions linked to Design Cost-Optimized Architectures.
SAA-C03 VPC practice questions
Practise SAA-C03 questions linked to SAA-C03 VPC.
SAA-C03 S3 lifecycle policy questions
Practise SAA-C03 questions linked to SAA-C03 S3 lifecycle policy questions.
SAA-C03 RDS Multi-AZ questions
Practise SAA-C03 questions linked to SAA-C03 RDS Multi-AZ questions.
SAA-C03 IAM policy practice questions
Practise SAA-C03 questions linked to SAA-C03 IAM policy.
SAA-C03 Route 53 failover questions
Practise SAA-C03 questions linked to SAA-C03 Route 53 failover questions.
SAA-C03 CloudFront practice questions
Practise SAA-C03 questions linked to SAA-C03 CloudFront.
SAA-C03 NAT gateway questions
Practise SAA-C03 questions linked to SAA-C03 NAT gateway questions.
SAA-C03 VPC endpoint questions
Practise SAA-C03 questions linked to SAA-C03 VPC endpoint questions.
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 Cost-Optimized Architectures — This question tests Design Cost-Optimized Architectures — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Use an EventBridge schedule to run the report as an Amazon ECS task on AWS Fargate and write results to S3. — Amazon ECS on AWS Fargate is the best choice because it eliminates the need to manage servers, scales automatically, and charges only for the vCPU and memory resources consumed during task execution. The EventBridge schedule triggers the Fargate task at 02:00 UTC, and the report is written to S3, which provides durable, cost-effective storage. This architecture minimizes operational overhead and cost by avoiding an always-on EC2 instance.
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: "always", "minimum / minimize". Absolute qualifier. An answer using 'always' is only correct if there are genuinely no exceptions — absolute statements are often wrong in networking.
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 →
Keep practising
More SAA-C03 practice questions
- A content publishing system uses Lambda functions that call an unreliable third-party API. Failed events must be retaine…
- A startup runs two EC2-based workloads in the same AWS Region. Its customer-facing API is always on, and its nightly vid…
- A warehouse integration service must use shared file storage across Linux EC2 instances in multiple Availability Zones.…
- A team runs a stateless web app on Amazon EC2 behind an Application Load Balancer. During traffic spikes, new EC2 instan…
- A service in private subnets downloads product images from Amazon S3 and stores job state in DynamoDB. A NAT Gateway is…
- A static site is hosted in Amazon S3 and delivered by CloudFront. After a frontend release, the same JavaScript bundles…
Last reviewed: Jun 11, 2026
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.
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.
Sign in to join the discussion.