Skip to main content

thesauris

Creates, updates, deletes, gets or lists a thesauris resource.

Overview

Namethesauris
TypeResource
Idaws.kendra.thesauris

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringIf the response is truncated, Amazon Kendra returns this token that you can use in the subsequent request to retrieve the next set of thesauri.
thesaurus_summary_itemsarrayAn array of summary information for a thesaurus or multiple thesauri.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_thesauriselectregionLists the thesauri for an index.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the thesauri for an index.

SELECT
next_token,
thesaurus_summary_items
FROM aws.kendra.thesauris
WHERE region = '{{ region }}' -- required
;