Interface ProjectMembershipReference
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ProjectMembershipReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:16.618Z")
@Stability(Stable)
public interface ProjectMembershipReference
extends software.amazon.jsii.JsiiSerializable
A reference to a ProjectMembership resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.interfaces.datazone.*;
ProjectMembershipReference projectMembershipReference = ProjectMembershipReference.builder()
.domainIdentifier("domainIdentifier")
.memberIdentifier("memberIdentifier")
.memberIdentifierType("memberIdentifierType")
.projectIdentifier("projectIdentifier")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forProjectMembershipReferencestatic final classAn implementation forProjectMembershipReference -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The DomainIdentifier of the ProjectMembership resource.The MemberIdentifier of the ProjectMembership resource.The MemberIdentifierType of the ProjectMembership resource.The ProjectIdentifier of the ProjectMembership resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainIdentifier
The DomainIdentifier of the ProjectMembership resource. -
getMemberIdentifier
The MemberIdentifier of the ProjectMembership resource. -
getMemberIdentifierType
The MemberIdentifierType of the ProjectMembership resource. -
getProjectIdentifier
The ProjectIdentifier of the ProjectMembership resource. -
builder
- Returns:
- a
ProjectMembershipReference.BuilderofProjectMembershipReference
-