Class CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty
The notify email type.
public class CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty : CfnUserPoolRiskConfigurationAttachment.INotifyEmailTypeProperty
- Inheritance
-
CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty
- Implements
- Inherited Members
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
Constructors
NotifyEmailTypeProperty()
public NotifyEmailTypeProperty()
Properties
HtmlBody
The email HTML body.
public string? HtmlBody { get; set; }
Property Value
Remarks
Subject
The email subject.
public string Subject { get; set; }
Property Value
Remarks
TextBody
The email text body.
public string? TextBody { get; set; }