interface AccountTakeoverActionsTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverActionsTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolRiskConfigurationAttachmentPropsMixin_AccountTakeoverActionsTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverActionsTypeProperty |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverActionsTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolRiskConfigurationAttachmentPropsMixin » AccountTakeoverActionsTypeProperty |
A list of account-takeover actions for each level of risk that Amazon Cognito might assess 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 accountTakeoverActionsTypeProperty: cognito_mixins.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverActionsTypeProperty = {
highAction: {
eventAction: 'eventAction',
notify: false,
},
lowAction: {
eventAction: 'eventAction',
notify: false,
},
mediumAction: {
eventAction: 'eventAction',
notify: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| high | IResolvable | Account | The action that you assign to a high-risk assessment by threat protection. |
| low | IResolvable | Account | The action that you assign to a low-risk assessment by threat protection. |
| medium | IResolvable | Account | The action that you assign to a medium-risk assessment by threat protection. |
highAction?
Type:
IResolvable | Account
(optional)
The action that you assign to a high-risk assessment by threat protection.
lowAction?
Type:
IResolvable | Account
(optional)
The action that you assign to a low-risk assessment by threat protection.
mediumAction?
Type:
IResolvable | Account
(optional)
The action that you assign to a medium-risk assessment by threat protection.

.NET
Go
Java
Python
TypeScript