Interface CfnProjectMembershipProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectMembershipProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T13:52:00.001Z")
@Stability(Stable)
public interface CfnProjectMembershipProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnProjectMembership.
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.*;
CfnProjectMembershipProps cfnProjectMembershipProps = CfnProjectMembershipProps.builder()
.designation("designation")
.domainIdentifier("domainIdentifier")
.member(MemberProperty.builder()
.groupIdentifier("groupIdentifier")
.userIdentifier("userIdentifier")
.build())
.projectIdentifier("projectIdentifier")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProjectMembershipPropsstatic final classAn implementation forCfnProjectMembershipProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The designated role of a project member.The ID of the Amazon DataZone domain in which project membership is created.The details about a project member.The ID of the project for which this project membership was created.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDesignation
The designated role of a project member.- See Also:
-
getDomainIdentifier
The ID of the Amazon DataZone domain in which project membership is created.- See Also:
-
getMember
The details about a project member.Returns union: either
IResolvableorCfnProjectMembership.MemberProperty- See Also:
-
getProjectIdentifier
The ID of the project for which this project membership was created.- See Also:
-
builder
- Returns:
- a
CfnProjectMembershipProps.BuilderofCfnProjectMembershipProps
-