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回答
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
エキスパート
回答済み 8ヶ月前
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
エキスパート
回答済み 8ヶ月前
profile pictureAWS
エキスパート
レビュー済み 8ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ