Table of Contents

Interface CfnUserPoolRiskConfigurationAttachment.IRiskExceptionConfigurationTypeProperty

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

The type of the configuration to override the risk decision.

public interface CfnUserPoolRiskConfigurationAttachment.IRiskExceptionConfigurationTypeProperty

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

Properties

BlockedIpRangeList

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

string[]? BlockedIpRangeList { get; }

Property Value

string[]

Remarks

SkippedIpRangeList

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

string[]? SkippedIpRangeList { get; }

Property Value

string[]

Remarks