
Ultimate access to all questions.
A DevOps engineer at a company is developing an AWS Lambda function to handle notifications from an Amazon SNS topic. The Lambda function is designed to process these notifications and store their contents in an Amazon RDS Multi-AZ DB instance. During a test, the DB instance was inadvertently shut down by a database administrator, resulting in the loss of several SNS notification messages that were sent during the downtime. To prevent such data loss in the future, which two solutions should the DevOps engineer implement?
A
Replace the RDS Multi-AZ DB instance with an Amazon DynamoDB table.
B
Configure an Amazon Simple Queue Service (Amazon SQS) queue as a destination of the Lambda function.
C
Configure an Amazon Simple Queue Service (Amazon SQS) dead-letter queue for the SNS topic.
D
Subscribe an Amazon Simple Queue Service (Amazon SQS) queue to the SNS topic. Configure the Lambda function to process messages from the SQS queue.
E
Replace the SNS topic with an Amazon EventBridge event bus. Configure an EventBridge rule on the new event bus to invoke the Lambda function for each event.