Table of Contents

Interface CfnUserPoolRiskConfigurationAttachment.INotifyEmailTypeProperty

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

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

Properties

HtmlBody

The email HTML body.

string? HtmlBody { get; }

Property Value

string

Remarks

Subject

The email subject.

string Subject { get; }

Property Value

string

Remarks

TextBody

The email text body.

string? TextBody { get; }

Property Value

string

Remarks