experience_entities
Creates, updates, deletes, gets or lists an experience_entities resource.
Overview
| Name | experience_entities |
| Type | Resource |
| Id | aws.kendra.experience_entities |
Fields
The following fields are returned by SELECT queries:
- list_experience_entities
| Name | Datatype | Description |
|---|---|---|
next_token | string | If the response is truncated, Amazon Kendra returns this token, which you can use in a later request to retrieve the next set of users or groups. |
summary_items | array | An array of summary information for one or more users or groups. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_experience_entities | select | region | Lists users or groups in your IAM Identity Center identity source that are granted access to your Amazon Kendra experience. You can create an Amazon Kendra experience such as a search application. For more information on creating a search application experience, see Building a search experience with no code. |
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_experience_entities
Lists users or groups in your IAM Identity Center identity source that are granted access to your Amazon Kendra experience. You can create an Amazon Kendra experience such as a search application. For more information on creating a search application experience, see Building a search experience with no code.
SELECT
next_token,
summary_items
FROM aws.kendra.experience_entities
WHERE region = '{{ region }}' -- required
;