DescribeGroupMembership
Source:
src/AWS/IdentityCenter/DescribeGroupMembership.ts
Runtime binding for the DescribeGroupMembership operation (IAM action
identitystore:DescribeGroupMembership), scoped to one Instance.
Reads a group membership (group id + member id) from the bound instance’s identity store by MembershipId. The instance’s
IdentityStoreId is injected from the binding. Provide the implementation with
Effect.provide(AWS.IdentityCenter.DescribeGroupMembershipHttp).
Querying Group Memberships
Section titled “Querying Group Memberships”// init — bind the operation to the Identity Center instanceconst describeGroupMembership = yield* AWS.IdentityCenter.DescribeGroupMembership(instance);
// runtimeconst membership = yield* describeGroupMembership({ MembershipId: membershipId,});console.log(membership.GroupId, membership.MemberId);