Interface CfnUserPoolUser.AttributeTypeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPoolUser.AttributeTypeProperty.Jsii$Proxy
Enclosing class:
CfnUserPoolUser

@Stability(Stable) public static interface CfnUserPoolUser.AttributeTypeProperty extends software.amazon.jsii.JsiiSerializable
The name and value of a user attribute.

This data type is a request parameter of AdminUpdateUserAttributes and UpdateUserAttributes .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cognito.*;
 AttributeTypeProperty attributeTypeProperty = AttributeTypeProperty.builder()
         .name("name")
         .value("value")
         .build();
 

See Also: