interface RiskExceptionConfigurationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.RiskExceptionConfigurationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolRiskConfigurationAttachmentPropsMixin_RiskExceptionConfigurationTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.RiskExceptionConfigurationTypeProperty |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.RiskExceptionConfigurationTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolRiskConfigurationAttachmentPropsMixin » 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 { mixins as cognito_mixins } from '@aws-cdk/mixins-preview/aws-cognito';
const riskExceptionConfigurationTypeProperty: cognito_mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.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.

.NET
Go
Java
Python
TypeScript