interface AttributeTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnUserPoolUserPropsMixin.AttributeTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnUserPoolUserPropsMixin_AttributeTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnUserPoolUserPropsMixin.AttributeTypeProperty |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnUserPoolUserPropsMixin.AttributeTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnUserPoolUserPropsMixin » AttributeTypeProperty |
The name and value of a user attribute.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cognito_mixins } from '@aws-cdk/mixins-preview/aws-cognito';
const attributeTypeProperty: cognito_mixins.CfnUserPoolUserPropsMixin.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
Go
Java
Python
TypeScript