aws-cdk-lib.aws_cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty

interface RiskExceptionConfigurationTypeProperty

LanguageType name
.NETAmazon.CDK.AWS.Cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPoolRiskConfigurationAttachment_RiskExceptionConfigurationTypeProperty
Javasoftware.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
Pythonaws_cdk.aws_cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty
TypeScript aws-cdk-lib » aws_cognito » CfnUserPoolRiskConfigurationAttachment » RiskExceptionConfigurationTypeProperty

The type of the configuration to override the risk decision.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const riskExceptionConfigurationTypeProperty: cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty = {
  blockedIpRangeList: ['blockedIpRangeList'],
  skippedIpRangeList: ['skippedIpRangeList'],
};

Properties

NameTypeDescription
blockedIpRangeList?string[]Overrides the risk decision to always block the pre-authentication requests.
skippedIpRangeList?string[]Risk detection isn't performed on the IP addresses in this range list.

blockedIpRangeList?

Type: string[] (optional)

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

The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.


skippedIpRangeList?

Type: string[] (optional)

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

The IP range is in CIDR notation.