Interface CfnProjectMembershipProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectMembershipProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-14T13:31:07.839Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProjectMembershipProps
static final class
An 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.- See Also:
-
getProjectIdentifier
The ID of the project for which this project membership was created.- See Also:
-
builder
- Returns:
- a
CfnProjectMembershipProps.Builder
ofCfnProjectMembershipProps
-