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_media_pipelines.voice_tone_analysis_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_timestampstring (date-time)The time at which a voice tone analysis task was created.
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>[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}</code>)
voice_tone_analysis_task_statusstringThe status of a voice tone analysis task. (NotStarted, Initializing, InProgress, Failed, Stopping, Stopped)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_voice_tone_analysis_taskselectidentifier, voice_tone_analysis_task_id, 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
identifierstringThe unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
regionstringAWS region (default: us-east-1)
voice_tone_analysis_task_idstringThe ID of the voice tone analysis task.

SELECT examples

Retrieves the details of a voice tone analysis task.

SELECT
created_timestamp,
updated_timestamp,
voice_tone_analysis_task_id,
voice_tone_analysis_task_status
FROM aws.chime_sdk_media_pipelines.voice_tone_analysis_tasks
WHERE identifier = '{{ identifier }}' -- required
AND voice_tone_analysis_task_id = '{{ voice_tone_analysis_task_id }}' -- required
AND region = '{{ region }}' -- required
;