Interface CfnUserPool.PoliciesProperty

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

@Stability(Stable) public static interface CfnUserPool.PoliciesProperty extends software.amazon.jsii.JsiiSerializable
The policy associated with a user pool.

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.*;
 PoliciesProperty policiesProperty = PoliciesProperty.builder()
         .passwordPolicy(PasswordPolicyProperty.builder()
                 .minimumLength(123)
                 .requireLowercase(false)
                 .requireNumbers(false)
                 .requireSymbols(false)
                 .requireUppercase(false)
                 .temporaryPasswordValidityDays(123)
                 .build())
         .build();