interface CfnUserPoolRiskConfigurationAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolRiskConfigurationAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolRiskConfigurationAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolRiskConfigurationAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolRiskConfigurationAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolRiskConfigurationAttachmentMixinProps |
Properties for CfnUserPoolRiskConfigurationAttachmentPropsMixin.
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 cfnUserPoolRiskConfigurationAttachmentMixinProps: cognito_mixins.CfnUserPoolRiskConfigurationAttachmentMixinProps = {
accountTakeoverRiskConfiguration: {
actions: {
highAction: {
eventAction: 'eventAction',
notify: false,
},
lowAction: {
eventAction: 'eventAction',
notify: false,
},
mediumAction: {
eventAction: 'eventAction',
notify: false,
},
},
notifyConfiguration: {
blockEmail: {
htmlBody: 'htmlBody',
subject: 'subject',
textBody: 'textBody',
},
from: 'from',
mfaEmail: {
htmlBody: 'htmlBody',
subject: 'subject',
textBody: 'textBody',
},
noActionEmail: {
htmlBody: 'htmlBody',
subject: 'subject',
textBody: 'textBody',
},
replyTo: 'replyTo',
sourceArn: 'sourceArn',
},
},
clientId: 'clientId',
compromisedCredentialsRiskConfiguration: {
actions: {
eventAction: 'eventAction',
},
eventFilter: ['eventFilter'],
},
riskExceptionConfiguration: {
blockedIpRangeList: ['blockedIpRangeList'],
skippedIpRangeList: ['skippedIpRangeList'],
},
userPoolId: 'userPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | IResolvable | Account | The settings for automated responses and notification templates for adaptive authentication with threat protection. |
| client | string | The app client where this configuration is applied. |
| compromised | IResolvable | Compromised | Settings for compromised-credentials actions and authentication types with threat protection in full-function ENFORCED mode. |
| risk | IResolvable | Risk | Exceptions to the risk evaluation configuration, including always-allow and always-block IP address ranges. |
| user | string | The ID of the user pool that has the risk configuration applied. |
accountTakeoverRiskConfiguration?
Type:
IResolvable | Account
(optional)
The settings for automated responses and notification templates for adaptive authentication with threat protection.
clientId?
Type:
string
(optional)
The app client where this configuration is applied.
When this parameter isn't present, the risk configuration applies to all user pool app clients that don't have client-level settings.
compromisedCredentialsRiskConfiguration?
Type:
IResolvable | Compromised
(optional)
Settings for compromised-credentials actions and authentication types with threat protection in full-function ENFORCED mode.
riskExceptionConfiguration?
Type:
IResolvable | Risk
(optional)
Exceptions to the risk evaluation configuration, including always-allow and always-block IP address ranges.
userPoolId?
Type:
string
(optional)
The ID of the user pool that has the risk configuration applied.

.NET
Go
Java
Python
TypeScript