Class CfnUserPool.NumberAttributeConstraintsProperty
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
ExampleMetadata: fixture=_generated
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
Remarks
MinValue
The minimum value of an attribute that is of the number data type.
public string? MinValue { get; set; }