Interface CfnGroupMembership.MemberIdProperty

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

@Stability(Stable) public static interface CfnGroupMembership.MemberIdProperty extends software.amazon.jsii.JsiiSerializable
An object that contains the identifier of a group member.

Setting the UserID field to the specific identifier for a user indicates that the user is a member of the group.

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.identitystore.*;
 MemberIdProperty memberIdProperty = MemberIdProperty.builder()
         .userId("userId")
         .build();