@Stability(value=Stable)
public static interface CfnUserPool.PoliciesProperty
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.*;
PoliciesProperty policiesProperty = PoliciesProperty.builder()
.passwordPolicy(PasswordPolicyProperty.builder()
.minimumLength(123)
.requireLowercase(false)
.requireNumbers(false)
.requireSymbols(false)
.requireUppercase(false)
.temporaryPasswordValidityDays(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserPool.PoliciesProperty.Builder
A builder for
CfnUserPool.PoliciesProperty |
static class |
CfnUserPool.PoliciesProperty.Jsii$Proxy
An implementation for
CfnUserPool.PoliciesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserPool.PoliciesProperty.Builder |
builder() |
default Object |
getPasswordPolicy()
The password policy.
|
@Stability(value=Stable) @Nullable default Object getPasswordPolicy()
@Stability(value=Stable) static CfnUserPool.PoliciesProperty.Builder builder()
Copyright © 2022. All rights reserved.