input_device_thumbnails
Creates, updates, deletes, gets or lists an input_device_thumbnails resource.
Overview
| Name | input_device_thumbnails |
| Type | Resource |
| Id | aws.medialive.input_device_thumbnails |
Fields
The following fields are returned by SELECT queries:
- describe_input_device_thumbnail
| Name | Datatype | Description |
|---|---|---|
body | string (byte) | The binary data for the thumbnail that the Link device has most recently sent to MediaLive. |
content_length | integer (int64) | The length of the content. |
content_type | string | Specifies the media type of the thumbnail. (image/jpeg) |
e_tag | string | Placeholder documentation for __string |
last_modified | string (date-time) | The date and time the thumbnail was last updated at the device. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_input_device_thumbnail | select | input_device_id, accept, region | Get 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.
| Name | Datatype | Description |
|---|---|---|
accept | string | The HTTP Accept header. Indicates the requested type for the thumbnail. |
input_device_id | string | The unique ID of this input device. For example, hd-123456789abcdef. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_input_device_thumbnail
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
;