aws-cdk-lib.aws_cognito.CfnUserPool.NumberAttributeConstraintsProperty

interface NumberAttributeConstraintsProperty

LanguageType name
.NETAmazon.CDK.AWS.Cognito.CfnUserPool.NumberAttributeConstraintsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPool_NumberAttributeConstraintsProperty
Javasoftware.amazon.awscdk.services.cognito.CfnUserPool.NumberAttributeConstraintsProperty
Pythonaws_cdk.aws_cognito.CfnUserPool.NumberAttributeConstraintsProperty
TypeScript aws-cdk-lib » aws_cognito » CfnUserPool » NumberAttributeConstraintsProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const numberAttributeConstraintsProperty: cognito.CfnUserPool.NumberAttributeConstraintsProperty = {
  maxValue: 'maxValue',
  minValue: 'minValue',
};

Properties

NameTypeDescription
maxValue?stringThe maximum value of an attribute that is of the number data type.
minValue?stringThe minimum value of an attribute that is of the number data type.

maxValue?

Type: string (optional)

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


minValue?

Type: string (optional)

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