Skip to main content

flow_source_thumbnails

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

Overview

Nameflow_source_thumbnails
TypeResource
Idaws.mediaconnect.flow_source_thumbnails

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
flow_arnstringThe ARN of the flow that DescribeFlowSourceThumbnail was performed on.
thumbnailstringThumbnail Base64 string.
thumbnail_messagesarrayStatus code and messages about the flow source thumbnail.
timecodestringTimecode of thumbnail.
timestampstring (date-time)The timestamp of when thumbnail was generated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_flow_source_thumbnailselectflow_arn, regionDescribes the thumbnail for the flow source.

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
flow_arnstringThe Amazon Resource Name (ARN) of the flow.
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the thumbnail for the flow source.

SELECT
flow_arn,
thumbnail,
thumbnail_messages,
timecode,
timestamp
FROM aws.mediaconnect.flow_source_thumbnails
WHERE flow_arn = '{{ flow_arn }}' -- required
AND region = '{{ region }}' -- required
;