speaker_search_tasks
Creates, updates, deletes, gets or lists a speaker_search_tasks resource.
Overview
| Name | speaker_search_tasks |
| Type | Resource |
| Id | aws.chime_sdk_media_pipelines.speaker_search_tasks |
Fields
The following fields are returned by SELECT queries:
- get_speaker_search_task
| Name | Datatype | Description |
|---|---|---|
created_timestamp | string (date-time) | The time at which a speaker search task was created. |
speaker_search_task_id | string | The 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_status | string | The status of the speaker search task. (NotStarted, Initializing, InProgress, Failed, Stopping, Stopped) |
updated_timestamp | string (date-time) | The time at which a speaker search task was updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_speaker_search_task | select | identifier, speaker_search_task_id, region | Retrieves 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.
| 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) |
speaker_search_task_id | string | The ID of the speaker search task. |
SELECT examples
- get_speaker_search_task
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
;