interface RiskExceptionConfigurationTypeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty |
![]() | software.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty |
![]() | aws_cdk.aws_cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty |
![]() | @aws-cdk/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 * as cognito from '@aws-cdk/aws-cognito';
const riskExceptionConfigurationTypeProperty: cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty = {
blockedIpRangeList: ['blockedIpRangeList'],
skippedIpRangeList: ['skippedIpRangeList'],
};
Properties
Name | Type | Description |
---|---|---|
blocked | string[] | Overrides the risk decision to always block the pre-authentication requests. |
skipped | 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.