Interface CfnGroupMembershipProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroupMembershipProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-15T23:29:04.992Z")
@Stability(Stable)
public interface CfnGroupMembershipProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGroupMembership
.
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.*; CfnGroupMembershipProps cfnGroupMembershipProps = CfnGroupMembershipProps.builder() .groupId("groupId") .identityStoreId("identityStoreId") .memberId(MemberIdProperty.builder() .userId("userId") .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGroupMembershipProps
static final class
An implementation forCfnGroupMembershipProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The identifier for a group in the identity store.The globally unique identifier for the identity store.An object containing the identifier of a group member.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroupId
The identifier for a group in the identity store.- See Also:
-
getIdentityStoreId
The globally unique identifier for the identity store.- See Also:
-
getMemberId
An object containing the identifier of a group member.Setting the
MemberId
'sUserId
field to a specific User's ID indicates that user is a member of the group.- See Also:
-
builder
- Returns:
- a
CfnGroupMembershipProps.Builder
ofCfnGroupMembershipProps
-