GroupMembershipReference
- class aws_cdk.aws_identitystore.GroupMembershipReference(*, identity_store_id, membership_id)
Bases:
object
A reference to a GroupMembership resource.
- Parameters:
identity_store_id (
str
) – The IdentityStoreId of the GroupMembership resource.membership_id (
str
) – The MembershipId of the GroupMembership resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_identitystore as identitystore group_membership_reference = identitystore.GroupMembershipReference( identity_store_id="identityStoreId", membership_id="membershipId" )
Attributes
- identity_store_id
The IdentityStoreId of the GroupMembership resource.
- membership_id
The MembershipId of the GroupMembership resource.