Table of Contents

Class CfnUserPool.NumberAttributeConstraintsProperty

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 class CfnUserPool.NumberAttributeConstraintsProperty : CfnUserPool.INumberAttributeConstraintsProperty
Inheritance
CfnUserPool.NumberAttributeConstraintsProperty
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 numberAttributeConstraintsProperty = new NumberAttributeConstraintsProperty {
                 MaxValue = "maxValue",
                 MinValue = "minValue"
             };

Remarks

Constructors

NumberAttributeConstraintsProperty()

public NumberAttributeConstraintsProperty()

Properties

MaxValue

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

public string? MaxValue { get; set; }

Property Value

string

Remarks

MinValue

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

public string? MinValue { get; set; }

Property Value

string

Remarks