thesauris
Creates, updates, deletes, gets or lists a thesauris resource.
Overview
| Name | thesauris |
| Type | Resource |
| Id | aws.kendra.thesauris |
Fields
The following fields are returned by SELECT queries:
- list_thesauri
| Name | Datatype | Description |
|---|---|---|
next_token | string | If 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_items | array | An array of summary information for a thesaurus or multiple thesauri. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_thesauri | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_thesauri
Lists the thesauri for an index.
SELECT
next_token,
thesaurus_summary_items
FROM aws.kendra.thesauris
WHERE region = '{{ region }}' -- required
;