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

GroupMembers

import type { GroupMembers } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

A list of users or sub groups that belong to a group. Users and groups are useful for filtering search results to different users based on their group's access to documents.

interface GroupMembers {
MemberGroups?: MemberGroup[] | null;
MemberUsers?: MemberUser[] | null;
S3PathforGroupMembers?: S3Path | null;
}

§Properties

§
MemberGroups?: MemberGroup[] | null
[src]

A list of sub groups that belong to a group. For example, the sub groups "Research", "Engineering", and "Sales and Marketing" all belong to the group "Company".

§
MemberUsers?: MemberUser[] | null
[src]

A list of users that belong to a group. For example, a list of interns all belong to the "Interns" group.

§
S3PathforGroupMembers?: S3Path | null
[src]

If you have more than 1000 users and/or sub groups for a single group, you need to provide the path to the S3 file that lists your users and sub groups for a group. Your sub groups can contain more than 1000 users, but the list of sub groups that belong to a group (and/or users) must be no more than 1000.

You can download this example S3 file that uses the correct format for listing group members. Note, dataSourceId is optional. The value of type for a group is always GROUP and for a user it is always USER.