Table of Contents

Interface CfnUserPoolRiskConfigurationAttachment.IAccountTakeoverActionsTypeProperty

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

Account takeover actions type.

public interface CfnUserPoolRiskConfigurationAttachment.IAccountTakeoverActionsTypeProperty

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 accountTakeoverActionsTypeProperty = new AccountTakeoverActionsTypeProperty {
                 HighAction = new AccountTakeoverActionTypeProperty {
                     EventAction = "eventAction",
                     Notify = false
                 },
                 LowAction = new AccountTakeoverActionTypeProperty {
                     EventAction = "eventAction",
                     Notify = false
                 },
                 MediumAction = new AccountTakeoverActionTypeProperty {
                     EventAction = "eventAction",
                     Notify = false
                 }
             };

Remarks

Properties

HighAction

Action to take for a high risk.

object? HighAction { get; }

Property Value

object

Remarks

LowAction

Action to take for a low risk.

object? LowAction { get; }

Property Value

object

Remarks

MediumAction

Action to take for a medium risk.

object? MediumAction { get; }

Property Value

object

Remarks