Table of Contents

Class CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty

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

The type of the configuration to override the risk decision.

public class CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty : CfnUserPoolRiskConfigurationAttachment.IRiskExceptionConfigurationTypeProperty
Inheritance
CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
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 riskExceptionConfigurationTypeProperty = new RiskExceptionConfigurationTypeProperty {
                 BlockedIpRangeList = new [] { "blockedIpRangeList" },
                 SkippedIpRangeList = new [] { "skippedIpRangeList" }
             };

Remarks

Constructors

RiskExceptionConfigurationTypeProperty()

public RiskExceptionConfigurationTypeProperty()

Properties

BlockedIpRangeList

Overrides the risk decision to always block the pre-authentication requests.

public string[]? BlockedIpRangeList { get; set; }

Property Value

string[]

Remarks

SkippedIpRangeList

Risk detection isn't performed on the IP addresses in this range list.

public string[]? SkippedIpRangeList { get; set; }

Property Value

string[]

Remarks