Table of Contents

Interface CfnUserPool.INumberAttributeConstraintsProperty

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

The minimum and maximum values of an attribute that is of the number data type.

public interface CfnUserPool.INumberAttributeConstraintsProperty

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 numberAttributeConstraintsProperty = new NumberAttributeConstraintsProperty {
                 MaxValue = "maxValue",
                 MinValue = "minValue"
             };

Remarks

Properties

MaxValue

The maximum value of an attribute that is of the number data type.

string? MaxValue { get; }

Property Value

string

Remarks

MinValue

The minimum value of an attribute that is of the number data type.

string? MinValue { get; }

Property Value

string

Remarks