Table of Contents

Class CfnUserPoolRiskConfigurationAttachment.NotifyEmailTypeProperty

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

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

Constructors

NotifyEmailTypeProperty()

public NotifyEmailTypeProperty()

Properties

HtmlBody

The email HTML body.

public string? HtmlBody { get; set; }

Property Value

string

Remarks

Subject

The email subject.

public string Subject { get; set; }

Property Value

string

Remarks

TextBody

The email text body.

public string? TextBody { get; set; }

Property Value

string

Remarks