realtime_contact_analysis_segments
Creates, updates, deletes, gets or lists a realtime_contact_analysis_segments resource.
Overview
| Name | realtime_contact_analysis_segments |
| Type | Resource |
| Id | aws.connect_contact_lens.realtime_contact_analysis_segments |
Fields
The following fields are returned by SELECT queries:
- list_realtime_contact_analysis_segments
| Name | Datatype | Description |
|---|---|---|
next_token | string | If there are additional results, this is the token for the next set of results. If response includes nextToken there are two possible scenarios: There are more segments so another call is required to get them. There are no more segments at this time, but more may be available later (real-time analysis is in progress) so the client should call the operation again to get new segments. If response does not include nextToken, the analysis is completed (successfully or failed) and there are no more segments to retrieve. (pattern: <code>.\S.</code>) |
segments | array | An analyzed transcript or category. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_realtime_contact_analysis_segments | select | region | Provides a list of analysis segments for a real-time analysis 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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_realtime_contact_analysis_segments
Provides a list of analysis segments for a real-time analysis session.
SELECT
next_token,
segments
FROM aws.connect_contact_lens.realtime_contact_analysis_segments
WHERE region = '{{ region }}' -- required
;