Skip to main content

thumbnails

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

Overview

Namethumbnails
TypeResource
Idaws.medialive.thumbnails

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
thumbnail_detailsarrayPlaceholder documentation for __listOfThumbnailDetail

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_thumbnailsselectchannel_id, pipelineId, thumbnailType, regionDescribe the latest thumbnails data.

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
channel_idstringUnique ID of the channel
pipelineIdstringPipeline ID ("0" or "1")
regionstringAWS region (default: us-east-1)
thumbnailTypestringthumbnail type

SELECT examples

Describe the latest thumbnails data.

SELECT
thumbnail_details
FROM aws.medialive.thumbnails
WHERE channel_id = '{{ channel_id }}' -- required
AND pipelineId = '{{ pipelineId }}' -- required
AND thumbnailType = '{{ thumbnailType }}' -- required
AND region = '{{ region }}' -- required
;