Interface CfnProjectPropsMixin.ProjectMembershipAssignmentProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProjectPropsMixin.ProjectMembershipAssignmentProperty.Jsii$Proxy
Enclosing class:
CfnProjectPropsMixin

@Stability(Stable) public static interface CfnProjectPropsMixin.ProjectMembershipAssignmentProperty extends software.amazon.jsii.JsiiSerializable
The project membership assignment.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.datazone.*;
 ProjectMembershipAssignmentProperty projectMembershipAssignmentProperty = ProjectMembershipAssignmentProperty.builder()
         .designation("designation")
         .member(MemberProperty.builder()
                 .groupIdentifier("groupIdentifier")
                 .userIdentifier("userIdentifier")
                 .build())
         .build();
 

See Also: