Interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty.Jsii$Proxy
Enclosing class:
CfnUserPoolRiskConfigurationAttachment

@Stability(Stable) public static interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty extends software.amazon.jsii.JsiiSerializable
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 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();
 

See Also: