Skip to main content

indices

Creates, updates, deletes, gets or lists an indices resource.

Overview

Nameindices
TypeResource
Idaws.kendra.indices

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
index_configuration_summary_itemsarrayAn array of summary information on the configuration of one or more indexes.
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 indexes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_indicesselectregionLists the Amazon Kendra indexes that you created.

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 Amazon Kendra indexes that you created.

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