SES verified identity of type Domain via CDK

1

Hi team!

is there a way to create/validate a domain identity in SES via CDK,

on the CSK documentation, I only found EmailIdentity construct

https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ses-readme.html#email-identity

should I use a custom construct?

https://github.com/mooyoul/aws-cdk-ses-domain-identity

I want to create an SES verified identity of type Domain via CDK code.

Thank you!

1回答
1

Hi,

The EmailIdentity construct applies to both email addresses and domains. Assuming you would like to verify a domain identity that has its DNS hosted in Route53, you can leverage the example in the CDK documentation you referenced which results in all the records for that domain being created in Route53:

declare const myHostedZone: route53.IPublicHostedZone;

const identity = new ses.EmailIdentity(stack, 'Identity', {
  identity: ses.Identity.publicHostedZone(myHostedZone),
  mailFromDomain: 'mail.cdk.dev',
});

Email identity : https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ses-readme.html#email-identity

profile pictureAWS
サポートエンジニア
Simba_M
回答済み 2年前
  • How would one do this if you are not creating the Route53 PublicHostedZone in the same stack? (how to update within an existing PublicHostedZone?

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

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

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

関連するコンテンツ