aws-cdk-lib.aws_cognito.CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty

interface AccountTakeoverActionsTypeProperty

LanguageType name
.NETAmazon.CDK.AWS.Cognito.CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPoolRiskConfigurationAttachment_AccountTakeoverActionsTypeProperty
Javasoftware.amazon.awscdk.services.cognito.CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
Pythonaws_cdk.aws_cognito.CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
TypeScript aws-cdk-lib » aws_cognito » CfnUserPoolRiskConfigurationAttachment » AccountTakeoverActionsTypeProperty

Account takeover actions type.

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 accountTakeoverActionsTypeProperty: cognito.CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty = {
  highAction: {
    eventAction: 'eventAction',
    notify: false,
  },
  lowAction: {
    eventAction: 'eventAction',
    notify: false,
  },
  mediumAction: {
    eventAction: 'eventAction',
    notify: false,
  },
};

Properties

NameTypeDescription
highAction?IResolvable | AccountTakeoverActionTypePropertyAction to take for a high risk.
lowAction?IResolvable | AccountTakeoverActionTypePropertyAction to take for a low risk.
mediumAction?IResolvable | AccountTakeoverActionTypePropertyAction to take for a medium risk.

highAction?

Type: IResolvable | AccountTakeoverActionTypeProperty (optional)

Action to take for a high risk.


lowAction?

Type: IResolvable | AccountTakeoverActionTypeProperty (optional)

Action to take for a low risk.


mediumAction?

Type: IResolvable | AccountTakeoverActionTypeProperty (optional)

Action to take for a medium risk.