interface StringAttributeConstraintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cognito.CfnUserPoolPropsMixin.StringAttributeConstraintsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscognito#CfnUserPoolPropsMixin_StringAttributeConstraintsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cognito.CfnUserPoolPropsMixin.StringAttributeConstraintsProperty |
Python | aws_cdk.cfn_property_mixins.aws_cognito.CfnUserPoolPropsMixin.StringAttributeConstraintsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cognito » CfnUserPoolPropsMixin » StringAttributeConstraintsProperty |
The minimum and maximum length values of an attribute that is of the string type, for example custom:department .
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/cfn-property-mixins';
const stringAttributeConstraintsProperty: cognito.CfnUserPoolPropsMixin.StringAttributeConstraintsProperty = {
maxLength: 'maxLength',
minLength: 'minLength',
};
Properties
| Name | Type | Description |
|---|---|---|
| max | string | The maximum length of a string attribute value. |
| min | string | The minimum length of a string attribute value. |
maxLength?
Type:
string
(optional)
The maximum length of a string attribute value.
Must be a number less than or equal to 2^1023 , represented as a string with a length of 131072 characters or fewer.
minLength?
Type:
string
(optional)
The minimum length of a string attribute value.

.NET
Go
Java
Python
TypeScript