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: