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
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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserProfile.UserProfileDetailsPropertystatic final classAn implementation forCfnUserProfile.UserProfileDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIam
The details of the IAM User Profile.Returns union: either
IResolvableorCfnUserProfile.IamUserProfileDetailsProperty- See Also:
-
getSso
The details of the SSO User Profile.Returns union: either
IResolvableorCfnUserProfile.SsoUserProfileDetailsProperty- See Also:
-
builder
-