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

CreateThesaurusRequest

import type { CreateThesaurusRequest } from "https://aws-api.deno.dev/v0.4/services/kendra.ts?docs=full";
interface CreateThesaurusRequest {
ClientToken?: string | null;
Description?: string | null;
IndexId: string;
Name: string;
RoleArn: string;
SourceS3Path: S3Path;
Tags?: Tag[] | null;
}

§Properties

§
ClientToken?: string | null
[src]

A token that you provide to identify the request to create a thesaurus. Multiple calls to the CreateThesaurus API with the same client token will create only one thesaurus.

§
Description?: string | null
[src]

A description for the thesaurus.

§
IndexId: string
[src]

The identifier of the index for the thesaurus.

§
Name: string
[src]

A name for the thesaurus.

§
RoleArn: string
[src]

An IAM role that gives Amazon Kendra permissions to access thesaurus file specified in SourceS3Path.

§
SourceS3Path: S3Path
[src]

The path to the thesaurus file in S3.

§
Tags?: Tag[] | null
[src]

A list of key-value pairs that identify the thesaurus. You can use the tags to identify and organize your resources and to control access to resources.