Table of Contents

Interface CfnUserPool.IPoliciesProperty

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

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

Properties

PasswordPolicy

The password policy.

object? PasswordPolicy { get; }

Property Value

object

Remarks