interface AttributeTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPoolUser.AttributeTypeProperty |
Java | software.amazon.awscdk.services.cognito.CfnUserPoolUser.AttributeTypeProperty |
Python | aws_cdk.aws_cognito.CfnUserPoolUser.AttributeTypeProperty |
TypeScript | @aws-cdk/aws-cognito » CfnUserPoolUser » AttributeTypeProperty |
Specifies whether the attribute is standard or custom.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cognito from '@aws-cdk/aws-cognito';
const attributeTypeProperty: cognito.CfnUserPoolUser.AttributeTypeProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the attribute. |
| value? | string | The value of the attribute. |
name?
Type:
string
(optional)
The name of the attribute.
value?
Type:
string
(optional)
The value of the attribute.

.NET
Java
Python
TypeScript