Interface UserPoolSESOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
UserPoolSESOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.751Z") @Stability(Stable) public interface UserPoolSESOptions extends software.amazon.jsii.JsiiSerializable
Configuration for Cognito sending emails via Amazon SES.

Example:

 UserPool.Builder.create(this, "myuserpool")
         .email(UserPoolEmail.withSES(UserPoolSESOptions.builder()
                 .fromEmail("noreply@myawesomeapp.com")
                 .fromName("Awesome App")
                 .replyTo("support@myawesomeapp.com")
                 .build()))
         .build();
 
  • Method Details

    • getFromEmail

      @Stability(Stable) @NotNull String getFromEmail()
      The verified Amazon SES email address that Cognito should use to send emails.

      The email address used must be a verified email address in Amazon SES and must be configured to allow Cognito to send emails.

      See Also:
    • getConfigurationSetName

      @Stability(Stable) @Nullable default String getConfigurationSetName()
      The name of a configuration set in Amazon SES that should be applied to emails sent via Cognito.

      Default: - no configuration set

      See Also:
    • getFromName

      @Stability(Stable) @Nullable default String getFromName()
      An optional name that should be used as the sender's name along with the email.

      Default: - no name

    • getReplyTo

      @Stability(Stable) @Nullable default String getReplyTo()
      The destination to which the receiver of the email should reply to.

      Default: - same as the fromEmail

    • getSesRegion

      @Stability(Stable) @Nullable default String getSesRegion()
      Required if the UserPool region is different than the SES region.

      If sending emails with a Amazon SES verified email address, and the region that SES is configured is different than the region in which the UserPool is deployed, you must specify that region here.

      Default: - The same region as the Cognito UserPool

    • getSesVerifiedDomain

      @Stability(Stable) @Nullable default String getSesVerifiedDomain()
      SES Verified custom domain to be used to verify the identity.

      Default: - no domain

    • builder

      @Stability(Stable) static UserPoolSESOptions.Builder builder()
      Returns:
      a UserPoolSESOptions.Builder of UserPoolSESOptions