Interface CfnUserProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:16.963Z")
@Stability(Stable)
public interface CfnUserProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnUserProfile
.
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.*; CfnUserProfileProps cfnUserProfileProps = CfnUserProfileProps.builder() .domainIdentifier("domainIdentifier") .userIdentifier("userIdentifier") // the properties below are optional .status("status") .userType("userType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUserProfileProps
static final class
An implementation forCfnUserProfileProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnUserProfileProps.Builder
builder()
The identifier of a Amazon DataZone domain in which a user profile exists.default String
The status of the user profile.The identifier of the user for which the user profile is created.default String
The user type of the user for which the user profile is created.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainIdentifier
The identifier of a Amazon DataZone domain in which a user profile exists.- See Also:
-
getUserIdentifier
The identifier of the user for which the user profile is created.- See Also:
-
getStatus
The status of the user profile.- See Also:
-
getUserType
The user type of the user for which the user profile is created.- See Also:
-
builder
- Returns:
- a
CfnUserProfileProps.Builder
ofCfnUserProfileProps
-