Table of Contents

Interface CfnUserPoolRiskConfigurationAttachment.INotifyConfigurationTypeProperty

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

The notify configuration type.

public interface CfnUserPoolRiskConfigurationAttachment.INotifyConfigurationTypeProperty

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 notifyConfigurationTypeProperty = new NotifyConfigurationTypeProperty {
                 SourceArn = "sourceArn",

                 // the properties below are optional
                 BlockEmail = new NotifyEmailTypeProperty {
                     Subject = "subject",

                     // the properties below are optional
                     HtmlBody = "htmlBody",
                     TextBody = "textBody"
                 },
                 From = "from",
                 MfaEmail = new NotifyEmailTypeProperty {
                     Subject = "subject",

                     // the properties below are optional
                     HtmlBody = "htmlBody",
                     TextBody = "textBody"
                 },
                 NoActionEmail = new NotifyEmailTypeProperty {
                     Subject = "subject",

                     // the properties below are optional
                     HtmlBody = "htmlBody",
                     TextBody = "textBody"
                 },
                 ReplyTo = "replyTo"
             };

Remarks

Properties

BlockEmail

Email template used when a detected risk event is blocked.

object? BlockEmail { get; }

Property Value

object

Remarks

From

The email address that is sending the email.

string? From { get; }

Property Value

string

Remarks

MfaEmail

The multi-factor authentication (MFA) email template used when MFA is challenged as part of a detected risk.

object? MfaEmail { get; }

Property Value

object

Remarks

NoActionEmail

The email template used when a detected risk event is allowed.

object? NoActionEmail { get; }

Property Value

object

Remarks

ReplyTo

The destination to which the receiver of an email should reply to.

string? ReplyTo { get; }

Property Value

string

Remarks

SourceArn

The Amazon Resource Name (ARN) of the identity that is associated with the sending authorization policy.

string SourceArn { get; }

Property Value

string

Remarks