interface RiskExceptionConfigurationTypeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPoolRiskConfigurationAttachment_RiskExceptionConfigurationTypeProperty |
![]() | software.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty |
![]() | aws_cdk.aws_cognito.CfnUserPoolRiskConfigurationAttachment.RiskExceptionConfigurationTypeProperty |
![]() | aws-cdk-lib » aws_cognito » CfnUserPoolRiskConfigurationAttachment » RiskExceptionConfigurationTypeProperty |
Exceptions to the risk evaluation configuration, including always-allow and always-block IP address ranges.
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
Name | Type | Description |
---|---|---|
blocked | string[] | An always-block IP address list. |
skipped | string[] | An always-allow IP address list. |
blockedIpRangeList?
Type:
string[]
(optional)
An always-block IP address list.
Overrides the risk decision and always blocks authentication requests. This parameter is displayed and set in CIDR notation.
skippedIpRangeList?
Type:
string[]
(optional)
An always-allow IP address list.
Risk detection isn't performed on the IP addresses in this range list. This parameter is displayed and set in CIDR notation.