router_input_thumbnails
Creates, updates, deletes, gets or lists a router_input_thumbnails resource.
Overview
| Name | router_input_thumbnails |
| Type | Resource |
| Id | aws.mediaconnect.router_input_thumbnails |
Fields
The following fields are returned by SELECT queries:
- get_router_input_thumbnail
| Name | Datatype | Description |
|---|---|---|
arn | string | The 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>) |
name | string | The name of the router input. |
thumbnail_details | object | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_router_input_thumbnail | select | arn, region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
arn | string | The Amazon Resource Name (ARN) of the router input that you want to see a thumbnail of. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_router_input_thumbnail
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
;