indices
Creates, updates, deletes, gets or lists an indices resource.
Overview
| Name | indices |
| Type | Resource |
| Id | aws.kendra.indices |
Fields
The following fields are returned by SELECT queries:
- list_indices
| Name | Datatype | Description |
|---|---|---|
index_configuration_summary_items | array | An array of summary information on the configuration of one or more indexes. |
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 indexes. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_indices | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_indices
Lists the Amazon Kendra indexes that you created.
SELECT
index_configuration_summary_items,
next_token
FROM aws.kendra.indices
WHERE region = '{{ region }}' -- required
;