Table of Contents

Class CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty

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

Account takeover actions type.

public class CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty : CfnUserPoolRiskConfigurationAttachment.IAccountTakeoverActionsTypeProperty
Inheritance
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
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 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

Constructors

AccountTakeoverActionsTypeProperty()

public AccountTakeoverActionsTypeProperty()

Properties

HighAction

Action to take for a high risk.

public object? HighAction { get; set; }

Property Value

object

Remarks

LowAction

Action to take for a low risk.

public object? LowAction { get; set; }

Property Value

object

Remarks

MediumAction

Action to take for a medium risk.

public object? MediumAction { get; set; }

Property Value

object

Remarks