entity_personas
Creates, updates, deletes, gets or lists an entity_personas resource.
Overview
| Name | entity_personas |
| Type | Resource |
| Id | aws.kendra.entity_personas |
Fields
The following fields are returned by SELECT queries:
- list_entity_personas
| 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_entity_personas | select | region | Lists specific permissions of users and groups with access to your Amazon Kendra experience. |
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_entity_personas
Lists specific permissions of users and groups with access to your Amazon Kendra experience.
SELECT
next_token,
summary_items
FROM aws.kendra.entity_personas
WHERE region = '{{ region }}' -- required
;