Interface CfnUserPool.IPoliciesProperty
The policy associated with a user pool.
public interface CfnUserPool.IPoliciesProperty
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
Properties
PasswordPolicy
The password policy.
object? PasswordPolicy { get; }