Interface CfnUserProfile.UserProfileDetailsProperty

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

@Stability(Stable) public static interface CfnUserProfile.UserProfileDetailsProperty extends software.amazon.jsii.JsiiSerializable
The details of the user profile in Amazon DataZone.

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.datazone.*;
 UserProfileDetailsProperty userProfileDetailsProperty = UserProfileDetailsProperty.builder()
         .iam(IamUserProfileDetailsProperty.builder()
                 .arn("arn")
                 .build())
         .sso(SsoUserProfileDetailsProperty.builder()
                 .firstName("firstName")
                 .lastName("lastName")
                 .username("username")
                 .build())
         .build();
 

See Also: