Interface CfnUserPoolRiskConfigurationAttachment.INotifyEmailTypeProperty
The notify email type.
public interface CfnUserPoolRiskConfigurationAttachment.INotifyEmailTypeProperty
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cognito;
var notifyEmailTypeProperty = new NotifyEmailTypeProperty {
Subject = "subject",
// the properties below are optional
HtmlBody = "htmlBody",
TextBody = "textBody"
};
Remarks
ExampleMetadata: fixture=_generated
Properties
HtmlBody
The email HTML body.
string? HtmlBody { get; }
Property Value
Remarks
Subject
The email subject.
string Subject { get; }
Property Value
Remarks
TextBody
The email text body.
string? TextBody { get; }