Using SES, SNS and DynamoDB

0

I would like to update information in a DynamoDB table when a domain has requested verification or been verified, and I based on my research I think Amazon SNS is the key to do it.

Basically I need a listener to activate when a domain is verified in SES. Is there a way I could use Amazon SNS or another Amazon service to update a table in DynamoDB when a domain in SES is verified?

2 Answers
1

Hi,

As said by other, I don't believe that there is the direct EventBridge that you're looking for.

By, you can build something delivering what you need:

EventBridge scheduler is detailled here: https://docs.aws.amazon.com/eventbridge/latest/userguide/scheduler.html

You can sophisticate this workflow by only activating the scheduler when you introduce a new domain, which needs verification, in your DDB. So, in that case, you would need to add a DDB trigger on updates to your domain table.

DDB triggers: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.Lambda.html

Best,

Didier

profile pictureAWS
EXPERT
answered 8 months ago
0

Hi,

AFAIK, neither SES nor EventBridge have the event you are looking for. You have only the option to perform an API call to check the domain verification status and perform corresponding changes.

profile picture
EXPERT
answered 8 months ago
profile pictureAWS
EXPERT
reviewed 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions