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