Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GroupMembership

import type { GroupMembership } from "https://aws-api.deno.dev/v0.4/services/identitystore.ts?docs=full";

Contains the identifiers for a group, a group member, and a GroupMembership object in the identity store.

interface GroupMembership {
GroupId?: string | null;
IdentityStoreId: string;
MemberId?: MemberId | null;
MembershipId?: string | null;
}

§Properties

§
GroupId?: string | null
[src]

The identifier for a group in the identity store.

§
IdentityStoreId: string
[src]

The globally unique identifier for the identity store.

§
MemberId?: MemberId | null
[src]

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.

§
MembershipId?: string | null
[src]

The identifier for a GroupMembership object in an identity store.