interface CompromisedCredentialsRiskConfigurationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cognito.CfnUserPoolRiskConfigurationAttachmentPropsMixin.CompromisedCredentialsRiskConfigurationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscognito#CfnUserPoolRiskConfigurationAttachmentPropsMixin_CompromisedCredentialsRiskConfigurationTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cognito.CfnUserPoolRiskConfigurationAttachmentPropsMixin.CompromisedCredentialsRiskConfigurationTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_cognito.CfnUserPoolRiskConfigurationAttachmentPropsMixin.CompromisedCredentialsRiskConfigurationTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cognito » CfnUserPoolRiskConfigurationAttachmentPropsMixin » CompromisedCredentialsRiskConfigurationTypeProperty |
Settings for compromised-credentials actions and authentication-event sources with advanced security features in full-function ENFORCED mode.
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/cfn-property-mixins';
const compromisedCredentialsRiskConfigurationTypeProperty: cognito.CfnUserPoolRiskConfigurationAttachmentPropsMixin.CompromisedCredentialsRiskConfigurationTypeProperty = {
actions: {
eventAction: 'eventAction',
},
eventFilter: ['eventFilter'],
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | IResolvable | Compromised | Settings for the actions that you want your user pool to take when Amazon Cognito detects compromised credentials. |
| event | string[] | Settings for the sign-in activity where you want to configure compromised-credentials actions. |
actions?
Type:
IResolvable | Compromised
(optional)
Settings for the actions that you want your user pool to take when Amazon Cognito detects compromised credentials.
eventFilter?
Type:
string[]
(optional)
Settings for the sign-in activity where you want to configure compromised-credentials actions.
Defaults to all events.

.NET
Go
Java
Python
TypeScript