You are currently managing an AWS RDS instance for your company.
You need to be notified whenever the backup occurs for the AWS RDS database.
How can you accomplish this in the easiest way possible? Choose 2 answers from the options given below.
Click on the arrows to vote for the correct answer
A. B. C. D.Correct Answers: A and C.
This is mentioned in the AWS Documentation.
Amazon RDS groups these events into categories that you can subscribe to get notified when an event in that category occurs.
You can subscribe to an event category for a DB instance, DB cluster, DB snapshot, DB cluster snapshot, DB security group, or DB parameter group.
For example, if you subscribe to the Backup category for a given DB instance, you will be notified whenever a backup-related event affects the DB instance.
If you subscribe to a Configuration Change category for a DB security group, you will be notified when the DB security group is changed.
You will also receive a notification when an event notification subscription changes.
Option B is incorrect because SQS is used as the messaging service.
You need to use SNS topics for notifications.
Option D is incorrect because you need to subscribe to AWS RDS events.
For more information on database events, please refer to the below URL-
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.htmlTo be notified whenever the backup occurs for the AWS RDS database, there are two possible ways to accomplish this:
Note: Option B and D are not relevant to this requirement. Creating an SQS queue for event messages is not a direct way to receive notifications when the backup occurs. Adding a Lambda trigger to the RDS database is not required to receive notifications for the backup.