interface CompromisedCredentialsRiskConfigurationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPoolRiskConfigurationAttachment_CompromisedCredentialsRiskConfigurationTypeProperty |
Java | software.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationTypeProperty |
Python | aws_cdk.aws_cognito.CfnUserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationTypeProperty |
TypeScript | aws-cdk-lib » aws_cognito » CfnUserPoolRiskConfigurationAttachment » 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-lib';
const compromisedCredentialsRiskConfigurationTypeProperty: cognito.CfnUserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationTypeProperty = {
actions: {
eventAction: 'eventAction',
},
// the properties below are optional
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
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