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

GroupMembershipExistenceResult

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

Indicates whether a resource is a member of a group in the identity store.

interface GroupMembershipExistenceResult {
GroupId?: string | null;
MemberId?: MemberId | null;
MembershipExists?: boolean | null;
}

§Properties

§
GroupId?: string | null
[src]

The identifier for a group in 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.

§
MembershipExists?: boolean | null
[src]

Indicates whether a membership relation exists or not.