public static interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cognito.*; AccountTakeoverActionsTypeProperty accountTakeoverActionsTypeProperty = AccountTakeoverActionsTypeProperty.builder() .highAction(AccountTakeoverActionTypeProperty.builder() .eventAction("eventAction") .notify(false) .build()) .lowAction(AccountTakeoverActionTypeProperty.builder() .eventAction("eventAction") .notify(false) .build()) .mediumAction(AccountTakeoverActionTypeProperty.builder() .eventAction("eventAction") .notify(false) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Builder
|
static class |
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Jsii$Proxy
An implementation for
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Builder |
builder() |
default java.lang.Object |
getHighAction()
Action to take for a high risk.
|
default java.lang.Object |
getLowAction()
Action to take for a low risk.
|
default java.lang.Object |
getMediumAction()
Action to take for a medium risk.
|