q_app_session_datas
Creates, updates, deletes, gets or lists a q_app_session_datas resource.
Overview
| Name | q_app_session_datas |
| Type | Resource |
| Id | aws.qapps.q_app_session_datas |
Fields
The following fields are returned by SELECT queries:
- list_q_app_session_data
| Name | Datatype | Description |
|---|---|---|
next_token | string | The pagination token that indicates the next set of results to retrieve. |
session_arn | string | The Amazon Resource Name (ARN) of the Q App data collection session. |
session_data | array | The collected responses of a Q App session. |
session_id | string | The unique identifier of the Q App data collection session. (pattern: <code>[\da-f]{8}-[\da-f]{4}-[45][\da-f]{3}-[89ABab][\da-f]{3}-[\da-f]{12}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_q_app_session_data | select | instance-id, sessionId, region | Lists the collected data of a Q App data collection session. |
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 |
|---|---|---|
instance-id | string | The unique identifier of the Amazon Q Business application environment instance. |
region | string | AWS region (default: us-east-1) |
sessionId | string | The unique identifier of the Q App data collection session. |
SELECT examples
- list_q_app_session_data
Lists the collected data of a Q App data collection session.
SELECT
next_token,
session_arn,
session_data,
session_id
FROM aws.qapps.q_app_session_datas
WHERE `instance-id` = '{{ instance-id }}' -- required
AND sessionId = '{{ sessionId }}' -- required
AND region = '{{ region }}' -- required
;