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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUserProfile.UserProfileDetailsProperty
static final class
An implementation forCfnUserProfile.UserProfileDetailsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIam
The IAM details included in the user profile details.- See Also:
-
getSso
The single sign-on details included in the user profile details.- See Also:
-
builder
-