@Stability(value=Stable)
public static interface CfnUserPool.PasswordPolicyProperty
extends software.amazon.jsii.JsiiSerializable
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)
.requireLowercase(false)
.requireNumbers(false)
.requireSymbols(false)
.requireUppercase(false)
.temporaryPasswordValidityDays(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserPool.PasswordPolicyProperty.Builder
A builder for
CfnUserPool.PasswordPolicyProperty |
static class |
CfnUserPool.PasswordPolicyProperty.Jsii$Proxy
An implementation for
CfnUserPool.PasswordPolicyProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserPool.PasswordPolicyProperty.Builder |
builder() |
default Number |
getMinimumLength()
The minimum length of the password in the policy that you have set.
|
default Object |
getRequireLowercase()
In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.
|
default Object |
getRequireNumbers()
In the password policy that you have set, refers to whether you have required users to use at least one number in their password.
|
default Object |
getRequireSymbols()
In the password policy that you have set, refers to whether you have required users to use at least one symbol in their password.
|
default Object |
getRequireUppercase()
In the password policy that you have set, refers to whether you have required users to use at least one uppercase letter in their password.
|
default Number |
getTemporaryPasswordValidityDays()
The number of days a temporary password is valid in the password policy.
|
@Stability(value=Stable) @Nullable default Number getMinimumLength()
This value can't be less than 6.
@Stability(value=Stable) @Nullable default Object getRequireLowercase()
@Stability(value=Stable) @Nullable default Object getRequireNumbers()
@Stability(value=Stable) @Nullable default Object getRequireSymbols()
@Stability(value=Stable) @Nullable default Object getRequireUppercase()
@Stability(value=Stable) @Nullable default Number getTemporaryPasswordValidityDays()
If the user doesn't sign in during this time, an administrator must reset their password.
When you set
TemporaryPasswordValidityDaysfor a user pool, you can no longer set a value for the legacyUnusedAccountValidityDaysparameter in that user pool.
@Stability(value=Stable) static CfnUserPool.PasswordPolicyProperty.Builder builder()
Copyright © 2022. All rights reserved.