Interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverRiskConfigurationTypeProperty

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

@Stability(Stable) public static interface CfnUserPoolRiskConfigurationAttachment.AccountTakeoverRiskConfigurationTypeProperty extends software.amazon.jsii.JsiiSerializable
Configuration for mitigation actions and notification for different levels of risk detected for a potential account takeover.

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.*;
 AccountTakeoverRiskConfigurationTypeProperty accountTakeoverRiskConfigurationTypeProperty = AccountTakeoverRiskConfigurationTypeProperty.builder()
         .actions(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())
         // the properties below are optional
         .notifyConfiguration(NotifyConfigurationTypeProperty.builder()
                 .sourceArn("sourceArn")
                 // the properties below are optional
                 .blockEmail(NotifyEmailTypeProperty.builder()
                         .subject("subject")
                         // the properties below are optional
                         .htmlBody("htmlBody")
                         .textBody("textBody")
                         .build())
                 .from("from")
                 .mfaEmail(NotifyEmailTypeProperty.builder()
                         .subject("subject")
                         // the properties below are optional
                         .htmlBody("htmlBody")
                         .textBody("textBody")
                         .build())
                 .noActionEmail(NotifyEmailTypeProperty.builder()
                         .subject("subject")
                         // the properties below are optional
                         .htmlBody("htmlBody")
                         .textBody("textBody")
                         .build())
                 .replyTo("replyTo")
                 .build())
         .build();