Skip to main content

media_insights_pipeline_status

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

Overview

Namemedia_insights_pipeline_status
TypeResource
Idaws.chime_sdk_media_pipelines.media_insights_pipeline_status

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
update_media_insights_pipeline_statusupdateidentifier, region, UpdateStatusUpdates the status of a media insights pipeline.

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)

UPDATE examples

Updates the status of a media insights pipeline.

UPDATE aws.chime_sdk_media_pipelines.media_insights_pipeline_status
SET
UpdateStatus = '{{ UpdateStatus }}'
WHERE
identifier = '{{ identifier }}' --required
AND region = '{{ region }}' --required
AND UpdateStatus = '{{ UpdateStatus }}' --required;