Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AWS Certified Solutions Architect - Associate SAA-C03 All Questions

View all questions & answers for the AWS Certified Solutions Architect - Associate SAA-C03 exam

Exam AWS Certified Solutions Architect - Associate SAA-C03 topic 1 question 51 discussion

A company is developing an application that provides order shipping statistics for retrieval by a REST API. The company wants to extract the shipping statistics, organize the data into an easy-to-read HTML format, and send the report to several email addresses at the same time every morning.
Which combination of steps should a solutions architect take to meet these requirements? (Choose two.)

  • A. Configure the application to send the data to Amazon Kinesis Data Firehose.
  • B. Use Amazon Simple Email Service (Amazon SES) to format the data and to send the report by email.
  • C. Create an Amazon EventBridge (Amazon CloudWatch Events) scheduled event that invokes an AWS Glue job to query the application's API for the data.
  • D. Create an Amazon EventBridge (Amazon CloudWatch Events) scheduled event that invokes an AWS Lambda function to query the application's API for the data.
  • E. Store the application data in Amazon S3. Create an Amazon Simple Notification Service (Amazon SNS) topic as an S3 event destination to send the report by email.
Show Suggested Answer Hide Answer
Suggested Answer: BD 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
whosawsome
Highly Voted 2 years, 1 month ago
Selected Answer: BD
You can use SES to format the report in HTML. https://docs.aws.amazon.com/ses/latest/dg/send-email-formatted.html
upvoted 31 times
apchandana
1 year, 7 months ago
this document is talking about the SES API. not ses. SES does not format data. just sending emails. https://aws.amazon.com/ses/
upvoted 7 times
Clouddon
1 year, 3 months ago
When you send an email with Amazon SES, the email information you need to provide depends on how you call Amazon SES. You can provide a minimal amount of information and have Amazon SES take care of all of the formatting for you. Or, if you want to do something more advanced like send an attachment, you can provide the raw message yourself. https://docs.aws.amazon.com/ses/latest/dg/send-email-concepts-email-format.html
upvoted 3 times
...
...
...
backbencher2022
Highly Voted 2 years ago
Selected Answer: BD
B&D are the only 2 correct options. If you are choosing option E then you missed the daily morning schedule requirement mentioned in the question which cant be achieved with S3 events for SNS. Event Bridge can used to configure scheduled events (every morning in this case). Option B fulfills the email in HTML format requirement (by SES) and D fulfills every morning schedule event requirement (by EventBridge)
upvoted 25 times
PaulGa
2 months, 1 week ago
Option B doesn't specify an API interface...
upvoted 1 times
...
RupeC
1 year, 4 months ago
I don't believe you are correct when you say that E cannot meet the scheduling requirement. If the glue action is scheduled and outputs to S3, then as the S3 event destination is SNS, in effect you have a way of getting SNS to have a scheduled release.
upvoted 2 times
pentium75
10 months, 3 weeks ago
But E does not include a glue action. We need either C or D for the scheduling, plus B or E for the email sending.
upvoted 2 times
...
...
slimen
1 year ago
the daily schedule can be achieve with event bridge - schedule and event bridge to trigger daily - the event briodge will trigger a lambda function that will collect data and save it in s3 - once data in s3 the event noitification will trigger SNS to send emails
upvoted 1 times
...
...
RamanadhRavinuthala
Most Recent 4 months ago
Selected Answer: BD
D Explanation: EventBridge can be used to schedule regular invocations of a Lambda function that retrieves the required data from the application's API. This step sets up the process to collect the data at the specified time every morning. B Explanation: Amazon SES can format the data into an easy-to-read HTML report and send the email to multiple recipients efficiently.
upvoted 3 times
JA2018
1 week, 5 days ago
https://docs.aws.amazon.com/ses/latest/dg/send-email-concepts-email-format.html
upvoted 1 times
...
...
hieunt.hus
4 months, 1 week ago
Selected Answer: BC
SNS & Glue
upvoted 1 times
...
jatric
4 months, 3 weeks ago
BC - Question says extract the data - which is the job of AWS Glue and then invoke SES endpoint to send email. SES support html format. But BD also seems possible.
upvoted 2 times
...
lofzee
5 months, 4 weeks ago
Defo B and D Look at the aws notes on Sns Notes You can't customize the body of the email message. The email delivery feature is intended to provide internal system alerts, not marketing messages. It can't send anything but notifications. SES can send normal emails therefore, BD is the answer.
upvoted 3 times
...
jhoiti
7 months, 3 weeks ago
Selected Answer: BE
Option B suggests using Amazon SES, which allows you to format the data and email the report to multiple recipients in an efficient and scalable way. Option E proposes storing application data in Amazon S3, which is scalable and durable storage. By configuring an Amazon SNS topic as an S3 event destination, you can automatically trigger the report to be sent via email whenever new data is added to S3.
upvoted 1 times
...
Monster07
8 months ago
Selected Answer: BD
Chat GPT says : With Amazon SES, you can send rich, formatted email content, including text, HTML, attachments, and embedded images, suitable for email communication. Amazon SNS is primarily used for sending plain-text or JSON-formatted messages, suitable for notifications and alerts across different channels. This can suggest that we need to use SES if we want to use HTML content.
upvoted 1 times
...
wyejay
10 months, 1 week ago
Answer: B and D Other options A. Amazon Kinesis Data Firehose: This service is typically used for real-time streaming data processing rather than for scheduled tasks like generating a morning report. C. Amazon EventBridge to invoke an AWS Glue job: AWS Glue is a data integration service that's more focused on ETL (extract, transform, load) operations, often involving large datasets and complex transformations, which might be more than needed for this scenario. E. Amazon S3 with SNS topic: Storing data in S3 and using SNS for notification is viable, but this doesn't directly address the need to format the data into HTML and send it as an email report. SNS is better suited for sending notifications rather than formatted reports.
upvoted 8 times
tonybuivannghia
2 months ago
Some mistakes that Kinesis Data Firehose is used for near real-time streaming data processing. But totally I agree with you that B & D are correct.
upvoted 2 times
...
...
awsgeek75
10 months, 1 week ago
Selected Answer: BD
Very detailed question so let's break it down: "send the report to several email addresses at the same time every morning" this locks B as nothing else can do it. A: Firehose to collect data from API will work but it cannot generate a report C: Glue is ETL, it cannot extract data from an API E: Store data in S3. No idea what this will help with The API provides order shipping data so you can query it. Lambda can be used to query the API easily so D is good choice that works with B. BD is correct combination
upvoted 3 times
...
pentium75
10 months, 3 weeks ago
Selected Answer: BD
"At the same time every morning" requires scheduling, which is only mentioned in C and D. AWS Glue has no native functionality to query REST APIs, thus we need a Lambda function -> D. For email we need SES or SNS, but as we want "an easy-to-read HTML format", SNS is out. SNS can send notifications, not formatted emails. Thus B.
upvoted 5 times
...
MoshiurGCP
1 year ago
Key: Send email every morning same time - 1. Simple email 2. AWS Event Bridge with lambda
upvoted 2 times
...
wearrexdzw3123
1 year ago
Selected Answer: B
I think there is a problem with the answer. It should be that ses sends the email processed by lambda.
upvoted 1 times
...
tom_cruise
1 year ago
Selected Answer: BD
Key: retrieval by a REST API, that's why use lambda
upvoted 2 times
...
tom_cruise
1 year, 1 month ago
Selected Answer: DE
Both SES and SNS can format html, but there is a disconnection between B and D. Where do you store the data between the steps?
upvoted 4 times
pentium75
11 months ago
Why would I need to "store the data"? Wouldn't the Lamba function just call the SES API?
upvoted 2 times
...
...
David_Ang
1 year, 1 month ago
Selected Answer: BD
the reason why "B" is more correct than "E" is because is more simple and you don't have to store data is not what they want, also SES is a service that is meant for sending the data through email, and is exactly what the company wants. is not the first time the admin is wrong with the answer
upvoted 3 times
...
hieulam
1 year, 2 months ago
Selected Answer: DE
E should be correct: https://saturncloud.io/blog/how-to-send-html-mails-using-amazon-sns/
upvoted 1 times
h_sahu
1 year, 2 months ago
I believe BD are the answers. E can't be used, because, in E can't help with email formatting. E won't be the best choice even for scheduling.
upvoted 3 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...