interface AccountTakeoverRiskConfigurationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverRiskConfigurationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolRiskConfigurationAttachmentPropsMixin_AccountTakeoverRiskConfigurationTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverRiskConfigurationTypeProperty |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverRiskConfigurationTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolRiskConfigurationAttachmentPropsMixin » AccountTakeoverRiskConfigurationTypeProperty |
The settings for automated responses and notification templates for adaptive authentication with advanced security features.
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 accountTakeoverRiskConfigurationTypeProperty: cognito_mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverRiskConfigurationTypeProperty = {
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',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | IResolvable | Account | A list of account-takeover actions for each level of risk that Amazon Cognito might assess with threat protection. |
| notify | IResolvable | Notify | The settings for composing and sending an email message when threat protection assesses a risk level with adaptive authentication. |
actions?
Type:
IResolvable | Account
(optional)
A list of account-takeover actions for each level of risk that Amazon Cognito might assess with threat protection.
notifyConfiguration?
Type:
IResolvable | Notify
(optional)
The settings for composing and sending an email message when threat protection assesses a risk level with adaptive authentication.
When you choose to notify users in AccountTakeoverRiskConfiguration , Amazon Cognito sends an email message using the method and template that you set with this data type.

.NET
Go
Java
Python
TypeScript