Interface CfnGroupMembershipProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroupMembershipProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:11.553Z")
@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 classA builder forCfnGroupMembershipPropsstatic final classAn 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'sUserIdfield to a specific User's ID indicates that user is a member of the group.Returns union: either
IResolvableorCfnGroupMembership.MemberIdProperty- See Also:
-
builder
- Returns:
- a
CfnGroupMembershipProps.BuilderofCfnGroupMembershipProps
-