Skip to main content

realtime_contact_analysis_segments

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

Overview

Namerealtime_contact_analysis_segments
TypeResource
Idaws.connect_contact_lens.realtime_contact_analysis_segments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringIf 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>)
segmentsarrayAn analyzed transcript or category.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_realtime_contact_analysis_segmentsselectregionProvides 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;