interface StringAttributeConstraintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPool.StringAttributeConstraintsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPool_StringAttributeConstraintsProperty |
Java | software.amazon.awscdk.services.cognito.CfnUserPool.StringAttributeConstraintsProperty |
Python | aws_cdk.aws_cognito.CfnUserPool.StringAttributeConstraintsProperty |
TypeScript | aws-cdk-lib » aws_cognito » CfnUserPool » 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-lib';
const stringAttributeConstraintsProperty: cognito.CfnUserPool.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