Interface CfnUserPoolRiskConfigurationAttachment.NotifyConfigurationTypeProperty

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

@Stability(Stable) public static interface CfnUserPoolRiskConfigurationAttachment.NotifyConfigurationTypeProperty extends software.amazon.jsii.JsiiSerializable
The notify configuration type.

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.*;
 NotifyConfigurationTypeProperty notifyConfigurationTypeProperty = NotifyConfigurationTypeProperty.builder()
         .sourceArn("sourceArn")
         // the properties below are optional
         .blockEmail(NotifyEmailTypeProperty.builder()
                 .subject("subject")
                 // the properties below are optional
                 .htmlBody("htmlBody")
                 .textBody("textBody")
                 .build())
         .from("from")
         .mfaEmail(NotifyEmailTypeProperty.builder()
                 .subject("subject")
                 // the properties below are optional
                 .htmlBody("htmlBody")
                 .textBody("textBody")
                 .build())
         .noActionEmail(NotifyEmailTypeProperty.builder()
                 .subject("subject")
                 // the properties below are optional
                 .htmlBody("htmlBody")
                 .textBody("textBody")
                 .build())
         .replyTo("replyTo")
         .build();
 

See Also: