Interface CfnUserPool.INumberAttributeConstraintsProperty
The minimum and maximum values of an attribute that is of the number type, for example custom:age
.
Namespace: Amazon.CDK.AWS.Cognito
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface INumberAttributeConstraintsProperty
Syntax (vb)
Public Interface INumberAttributeConstraintsProperty
Remarks
ExampleMetadata: fixture=_generated
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"
};
Synopsis
Properties
Max |
The maximum length of a number attribute value. |
Min |
The minimum value of an attribute that is of the number data type. |
Properties
MaxValue
The maximum length of a number attribute value.
virtual string MaxValue { get; }
Property Value
System.
Remarks
Must be a number less than or equal to 2^1023
, represented as a string with a length of 131072 characters or fewer.
MinValue
The minimum value of an attribute that is of the number data type.
virtual string MinValue { get; }
Property Value
System.