Interface CfnUser.UserIdentityInfoProperty

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

@Stability(Stable) public static interface CfnUser.UserIdentityInfoProperty extends software.amazon.jsii.JsiiSerializable
Contains information about the identity of a user.

For Amazon Connect instances that are created with the EXISTING_DIRECTORY identity management type, FirstName , LastName , and Email cannot be updated from within Amazon Connect because they are managed by the directory.

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.connect.*;
 UserIdentityInfoProperty userIdentityInfoProperty = UserIdentityInfoProperty.builder()
         .email("email")
         .firstName("firstName")
         .lastName("lastName")
         .mobile("mobile")
         .secondaryEmail("secondaryEmail")
         .build();
 

See Also: