ExamQuestions.com

Register
Login
AWS Certified Developer Associate Exam Questions

Amazon

AWS Certified Developer Associate

376 / 474

Question 376:

You and your colleague are working on a serverless application that involves the registration of 500 users at a time. You have written two functions to support this where one function handles the storing of information to DynamoDB, and the other sends a confirmation email using SES.One of the functions that sends an email when a new user’s information is saved to DynamoDB doesn’t scale. On querying DynamoDB, you realize all 500 user’s information is saved successfully. But CloudWatch shows failed invocations for the second function. How will you address the bottleneck in the least possible time?

Answer options:

A.Use AWS ALB with Lambda function to manage traffic.
B.Refactor code to decouple and create multiple functions to send emails.
C.Reserve concurrency for your second Lambda function.
D.Get your second function to poll DynamoDB for new records.