voice_tone_analysis_tasks
Creates, updates, deletes, gets or lists a voice_tone_analysis_tasks resource.
Overview
| Name | voice_tone_analysis_tasks |
| Type | Resource |
| Id | aws.chime_sdk_media_pipelines.voice_tone_analysis_tasks |
Fields
The following fields are returned by SELECT queries:
- get_voice_tone_analysis_task
| Name | Datatype | Description |
|---|---|---|
created_timestamp | string (date-time) | The time at which a voice tone analysis task was created. |
updated_timestamp | string (date-time) | The time at which a voice tone analysis task was updated. |
voice_tone_analysis_task_id | string | The 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_status | string | The status of a voice tone analysis task. (NotStarted, Initializing, InProgress, Failed, Stopping, Stopped) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_voice_tone_analysis_task | select | identifier, voice_tone_analysis_task_id, region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
identifier | string | The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline. |
region | string | AWS region (default: us-east-1) |
voice_tone_analysis_task_id | string | The ID of the voice tone analysis task. |
SELECT examples
- get_voice_tone_analysis_task
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
;