Interface CfnGroupProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroupProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)",
date="2026-05-21T17:27:33.966Z")
@Stability(Stable)
public interface CfnGroupProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGroupProfile.
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.*;
CfnGroupProfileProps cfnGroupProfileProps = CfnGroupProfileProps.builder()
.domainIdentifier("domainIdentifier")
// the properties below are optional
.groupIdentifier("groupIdentifier")
.groupType("groupType")
.rolePrincipalArn("rolePrincipalArn")
.status("status")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGroupProfilePropsstatic final classAn implementation forCfnGroupProfileProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGroupProfileProps.Builderbuilder()The identifier of the Amazon DataZone domain in which a group profile exists.default StringThe ID of the group of a project member.default StringThe type of the group.default StringThe ARN of the role principal for the group profile.default StringThe status of a group profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainIdentifier
The identifier of the Amazon DataZone domain in which a group profile exists.- See Also:
-
getGroupIdentifier
The ID of the group of a project member.- See Also:
-
getGroupType
The type of the group.- See Also:
-
getRolePrincipalArn
The ARN of the role principal for the group profile.- See Also:
-
getStatus
The status of a group profile.- See Also:
-
builder
- Returns:
- a
CfnGroupProfileProps.BuilderofCfnGroupProfileProps
-