thumbnails
Creates, updates, deletes, gets or lists a thumbnails resource.
Overview
| Name | thumbnails |
| Type | Resource |
| Id | aws.medialive.thumbnails |
Fields
The following fields are returned by SELECT queries:
- describe_thumbnails
| Name | Datatype | Description |
|---|---|---|
thumbnail_details | array | Placeholder documentation for __listOfThumbnailDetail |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_thumbnails | select | channel_id, pipelineId, thumbnailType, region | Describe 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.
| Name | Datatype | Description |
|---|---|---|
channel_id | string | Unique ID of the channel |
pipelineId | string | Pipeline ID ("0" or "1") |
region | string | AWS region (default: us-east-1) |
thumbnailType | string | thumbnail type |
SELECT examples
- describe_thumbnails
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
;