Skip to main content

q_app_session_datas

Creates, updates, deletes, gets or lists a q_app_session_datas resource.

Overview

Nameq_app_session_datas
TypeResource
Idaws.qapps.q_app_session_datas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe pagination token that indicates the next set of results to retrieve.
session_arnstringThe Amazon Resource Name (ARN) of the Q App data collection session.
session_dataarrayThe collected responses of a Q App session.
session_idstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_q_app_session_dataselectinstance-id, sessionId, regionLists 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.

NameDatatypeDescription
instance-idstringThe unique identifier of the Amazon Q Business application environment instance.
regionstringAWS region (default: us-east-1)
sessionIdstringThe unique identifier of the Q App data collection session.

SELECT examples

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
;