Interface CfnUserPool.EmailConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPool.EmailConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnUserPool

@Stability(Stable) public static interface CfnUserPool.EmailConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The email configuration of your user pool.

The email configuration type sets your preferred sending method, AWS Region, and sender for messages from your user pool.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cognito.*;
 EmailConfigurationProperty emailConfigurationProperty = EmailConfigurationProperty.builder()
         .configurationSet("configurationSet")
         .emailSendingAccount("emailSendingAccount")
         .from("from")
         .replyToEmailAddress("replyToEmailAddress")
         .sourceArn("sourceArn")
         .build();
 

See Also: