interface AccountTakeoverActionsTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cognito.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverActionsTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscognito#CfnUserPoolRiskConfigurationAttachmentPropsMixin_AccountTakeoverActionsTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cognito.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverActionsTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_cognito.CfnUserPoolRiskConfigurationAttachmentPropsMixin.AccountTakeoverActionsTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cognito » 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 { aws_cognito as cognito } from '@aws-cdk/cfn-property-mixins';
const accountTakeoverActionsTypeProperty: cognito.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