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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubject
The email subject. -
getHtmlBody
The email HTML body. -
getTextBody
The email text body. -
builder
@Stability(Stable) static CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty.Builder builder()
-