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