Interface CfnUserPoolRiskConfigurationAttachmentMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPoolRiskConfigurationAttachmentMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:24.209Z") @Stability(Stable) public interface CfnUserPoolRiskConfigurationAttachmentMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnUserPoolRiskConfigurationAttachmentPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.cognito.mixins.*;
 CfnUserPoolRiskConfigurationAttachmentMixinProps cfnUserPoolRiskConfigurationAttachmentMixinProps = CfnUserPoolRiskConfigurationAttachmentMixinProps.builder()
         .accountTakeoverRiskConfiguration(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())
                 .notifyConfiguration(NotifyConfigurationTypeProperty.builder()
                         .blockEmail(NotifyEmailTypeProperty.builder()
                                 .htmlBody("htmlBody")
                                 .subject("subject")
                                 .textBody("textBody")
                                 .build())
                         .from("from")
                         .mfaEmail(NotifyEmailTypeProperty.builder()
                                 .htmlBody("htmlBody")
                                 .subject("subject")
                                 .textBody("textBody")
                                 .build())
                         .noActionEmail(NotifyEmailTypeProperty.builder()
                                 .htmlBody("htmlBody")
                                 .subject("subject")
                                 .textBody("textBody")
                                 .build())
                         .replyTo("replyTo")
                         .sourceArn("sourceArn")
                         .build())
                 .build())
         .clientId("clientId")
         .compromisedCredentialsRiskConfiguration(CompromisedCredentialsRiskConfigurationTypeProperty.builder()
                 .actions(CompromisedCredentialsActionsTypeProperty.builder()
                         .eventAction("eventAction")
                         .build())
                 .eventFilter(List.of("eventFilter"))
                 .build())
         .riskExceptionConfiguration(RiskExceptionConfigurationTypeProperty.builder()
                 .blockedIpRangeList(List.of("blockedIpRangeList"))
                 .skippedIpRangeList(List.of("skippedIpRangeList"))
                 .build())
         .userPoolId("userPoolId")
         .build();
 

See Also: