Interface CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty

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

@Stability(Stable) public static interface CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty extends software.amazon.jsii.JsiiSerializable
The notify email 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.*;
 NotifyEmailTypeProperty notifyEmailTypeProperty = NotifyEmailTypeProperty.builder()
         .subject("subject")
         // the properties below are optional
         .htmlBody("htmlBody")
         .textBody("textBody")
         .build();