Interface CfnUserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationTypeProperty

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

@Stability(Stable) public static interface CfnUserPoolRiskConfigurationAttachment.CompromisedCredentialsRiskConfigurationTypeProperty extends software.amazon.jsii.JsiiSerializable
The compromised credentials risk configuration 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.*;
 CompromisedCredentialsRiskConfigurationTypeProperty compromisedCredentialsRiskConfigurationTypeProperty = CompromisedCredentialsRiskConfigurationTypeProperty.builder()
         .actions(CompromisedCredentialsActionsTypeProperty.builder()
                 .eventAction("eventAction")
                 .build())
         // the properties below are optional
         .eventFilter(List.of("eventFilter"))
         .build();
 

See Also: