Class CfnUserPool.PoliciesProperty
The policy associated with a user pool.
public class CfnUserPool.PoliciesProperty : CfnUserPool.IPoliciesProperty
- Inheritance
-
CfnUserPool.PoliciesProperty
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cognito;
var policiesProperty = new PoliciesProperty {
PasswordPolicy = new PasswordPolicyProperty {
MinimumLength = 123,
RequireLowercase = false,
RequireNumbers = false,
RequireSymbols = false,
RequireUppercase = false,
TemporaryPasswordValidityDays = 123
}
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
PoliciesProperty()
public PoliciesProperty()
Properties
PasswordPolicy
The password policy.
public object? PasswordPolicy { get; set; }