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

CreateAccessControlConfigurationRequest

import type { CreateAccessControlConfigurationRequest } from "https://aws-api.deno.dev/v0.4/services/kendra.ts?docs=full";
interface CreateAccessControlConfigurationRequest {
AccessControlList?: Principal[] | null;
ClientToken?: string | null;
Description?: string | null;
HierarchicalAccessControlList?: HierarchicalPrincipal[] | null;
IndexId: string;
Name: string;
}

§Properties

§
AccessControlList?: Principal[] | null
[src]

Information on principals (users and/or groups) and which documents they should have access to. This is useful for user context filtering, where search results are filtered based on the user or their group access to documents.

§
ClientToken?: string | null
[src]

A token that you provide to identify the request to create an access control configuration. Multiple calls to the CreateAccessControlConfiguration API with the same client token will create only one access control configuration.

§
Description?: string | null
[src]

A description for the access control configuration.

§
HierarchicalAccessControlList?: HierarchicalPrincipal[] | null
[src]

The list of principal lists that define the hierarchy for which documents users should have access to.

§
IndexId: string
[src]

The identifier of the index to create an access control configuration for your documents.

§
Name: string
[src]

A name for the access control configuration.