Skip to main content

router_input_thumbnails

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

Overview

Namerouter_input_thumbnails
TypeResource
Idaws.mediaconnect.router_input_thumbnails

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe ARN of the router input. (pattern: <code>arn:(aws[a-zA-Z-]*):mediaconnect:[a-z0-9-]+:[0-9]{12}:routerInput:[a-z0-9]{12}</code>)
namestringThe name of the router input.
thumbnail_detailsobjectThe details of the thumbnail associated with the router input, including the thumbnail image, timecode, timestamp, and any associated error messages.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_router_input_thumbnailselectarn, regionRetrieves the thumbnail for a router input in AWS Elemental MediaConnect.

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
arnstringThe Amazon Resource Name (ARN) of the router input that you want to see a thumbnail of.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the thumbnail for a router input in AWS Elemental MediaConnect.

SELECT
arn,
name,
thumbnail_details
FROM aws.mediaconnect.router_input_thumbnails
WHERE arn = '{{ arn }}' -- required
AND region = '{{ region }}' -- required
;