Skip to main content

input_device_thumbnails

Creates, updates, deletes, gets or lists an input_device_thumbnails resource.

Overview

Nameinput_device_thumbnails
TypeResource
Idaws.medialive.input_device_thumbnails

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bodystring (byte)The binary data for the thumbnail that the Link device has most recently sent to MediaLive.
content_lengthinteger (int64)The length of the content.
content_typestringSpecifies the media type of the thumbnail. (image/jpeg)
e_tagstringPlaceholder documentation for __string
last_modifiedstring (date-time)The date and time the thumbnail was last updated at the device.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_input_device_thumbnailselectinput_device_id, accept, regionGet the latest thumbnail data for the input device.

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
acceptstringThe HTTP Accept header. Indicates the requested type for the thumbnail.
input_device_idstringThe unique ID of this input device. For example, hd-123456789abcdef.
regionstringAWS region (default: us-east-1)

SELECT examples

Get the latest thumbnail data for the input device.

SELECT
body,
content_length,
content_type,
e_tag,
last_modified
FROM aws.medialive.input_device_thumbnails
WHERE input_device_id = '{{ input_device_id }}' -- required
AND accept = '{{ accept }}' -- required
AND region = '{{ region }}' -- required
;