Skip to main content

voice_tone_analysis_tasks

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

Overview

Namevoice_tone_analysis_tasks
TypeResource
Idaws.chime_sdk_voice.voice_tone_analysis_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
call_detailsobjectThe call details of a voice tone analysis task.
created_timestampstring (date-time)The time at which a voice tone analysis task was created.
started_timestampstring (date-time)The time at which a voice tone analysis task started.
status_messagestringThe status of a voice tone analysis task.
updated_timestampstring (date-time)The time at which a voice tone analysis task was updated.
voice_tone_analysis_task_idstringThe ID of the voice tone analysis task. (pattern: <code>.\S.</code>)
voice_tone_analysis_task_statusstringThe status of a voice tone analysis task, IN_QUEUE, IN_PROGRESS, PARTIAL_SUCCESS, SUCCEEDED, FAILED, or STOPPED. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_voice_tone_analysis_taskselectvoice_connector_id, voice_tone_analysis_task_id, isCaller, regionRetrieves the details of a voice tone analysis task.

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
isCallerbooleanSpecifies whether the voice being analyzed is the caller (originator) or the callee (responder).
regionstringAWS region (default: us-east-1)
voice_connector_idstringThe Voice Connector ID.
voice_tone_analysis_task_idstringThe ID of the voice tone analysis task.

SELECT examples

Retrieves the details of a voice tone analysis task.

SELECT
call_details,
created_timestamp,
started_timestamp,
status_message,
updated_timestamp,
voice_tone_analysis_task_id,
voice_tone_analysis_task_status
FROM aws.chime_sdk_voice.voice_tone_analysis_tasks
WHERE voice_connector_id = '{{ voice_connector_id }}' -- required
AND voice_tone_analysis_task_id = '{{ voice_tone_analysis_task_id }}' -- required
AND isCaller = '{{ isCaller }}' -- required
AND region = '{{ region }}' -- required
;