Interface CfnUserPool.PasswordPolicyProperty

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

@Stability(Stable) public static interface CfnUserPool.PasswordPolicyProperty extends software.amazon.jsii.JsiiSerializable
The password policy settings for a user pool, including complexity, history, and length requirements.

This data type is a request and response parameter of CreateUserPool and UpdateUserPool , and a response parameter of DescribeUserPool .

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

See Also: