-
Notifications
You must be signed in to change notification settings - Fork 4.5k
(aws-cdk-lib/aws-cognito): Set SES identity of type "Domain" as email sender #18825
Copy link
Copy link
Closed
Labels
@aws-cdk/aws-sesRelated to Amazon Simple Email ServiceRelated to Amazon Simple Email Serviceclosed-for-stalenessThis issue was automatically closed because it hadn't received any attention in a while.This issue was automatically closed because it hadn't received any attention in a while.feature-requestA feature should be added or improved.A feature should be added or improved.response-requestedWaiting on additional info and feedback. Will move to "closing-soon" in 7 days.Waiting on additional info and feedback. Will move to "closing-soon" in 7 days.
Metadata
Metadata
Assignees
Labels
@aws-cdk/aws-sesRelated to Amazon Simple Email ServiceRelated to Amazon Simple Email Serviceclosed-for-stalenessThis issue was automatically closed because it hadn't received any attention in a while.This issue was automatically closed because it hadn't received any attention in a while.feature-requestA feature should be added or improved.A feature should be added or improved.response-requestedWaiting on additional info and feedback. Will move to "closing-soon" in 7 days.Waiting on additional info and feedback. Will move to "closing-soon" in 7 days.
Description
Now we can configure email settings of Cognito UserPool using
UserPoolEmail.withSES()API.However the API makes CloudFormation template only for SES identity of type "Email address" for now, it makes deploy error when setting domain.
In particular, these settings can be succeeded to deploy,
these settings will be failed to deploy. (Sure, we can configure as this in AWS Console correctly.)
Because it will generate CloudFormation template as this, and the value "From" is incorrect.
Use Case
For now, developers have only SES identities with type "Domain" cannot make Cognito UserPool with SES via CDK.
Proposed Solution
When argument
fromEmailofUserPoolEmail.withSES()API consists only of domain string, change format of...EmailConfiguration.Fromfield of CloudFormation template.Other information
No response
Acknowledge