public static interface CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty.Builder
|
static class |
CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty.Jsii$Proxy
An implementation for
CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty.Builder |
builder() |
default java.lang.String |
getHtmlBody()
The email HTML body.
|
java.lang.String |
getSubject()
The email subject.
|
default java.lang.String |
getTextBody()
The email text body.
|