Show / Hide Table of Contents

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 CfnUserPool.INumberAttributeConstraintsProperty
Syntax (vb)
Public Interface CfnUserPool.INumberAttributeConstraintsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-numberattributeconstraints.html

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

MaxValue

The maximum length of a number attribute value.

MinValue

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

Properties

MaxValue

The maximum length of a number attribute value.

string? MaxValue { get; }
Property Value

string

Remarks

Must be a number less than or equal to 2^1023 , represented as a string with a length of 131072 characters or fewer.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-numberattributeconstraints.html#cfn-cognito-userpool-numberattributeconstraints-maxvalue

MinValue

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

string? MinValue { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-numberattributeconstraints.html#cfn-cognito-userpool-numberattributeconstraints-minvalue

Back to top Generated by DocFX