Skip to main content

speaker_search_tasks

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

Overview

Namespeaker_search_tasks
TypeResource
Idaws.chime_sdk_media_pipelines.speaker_search_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_timestampstring (date-time)The time at which a speaker search task was created.
speaker_search_task_idstringThe speaker search task ID. (pattern: <code>[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}</code>)
speaker_search_task_statusstringThe status of the speaker search task. (NotStarted, Initializing, InProgress, Failed, Stopping, Stopped)
updated_timestampstring (date-time)The time at which a speaker search task was updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_speaker_search_taskselectidentifier, speaker_search_task_id, regionRetrieves the details of the specified speaker search 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)
speaker_search_task_idstringThe ID of the speaker search task.

SELECT examples

Retrieves the details of the specified speaker search task.

SELECT
created_timestamp,
speaker_search_task_id,
speaker_search_task_status,
updated_timestamp
FROM aws.chime_sdk_media_pipelines.speaker_search_tasks
WHERE identifier = '{{ identifier }}' -- required
AND speaker_search_task_id = '{{ speaker_search_task_id }}' -- required
AND region = '{{ region }}' -- required
;