flow_source_thumbnails
Creates, updates, deletes, gets or lists a flow_source_thumbnails resource.
Overview
| Name | flow_source_thumbnails |
| Type | Resource |
| Id | aws.mediaconnect.flow_source_thumbnails |
Fields
The following fields are returned by SELECT queries:
- describe_flow_source_thumbnail
| Name | Datatype | Description |
|---|---|---|
flow_arn | string | The ARN of the flow that DescribeFlowSourceThumbnail was performed on. |
thumbnail | string | Thumbnail Base64 string. |
thumbnail_messages | array | Status code and messages about the flow source thumbnail. |
timecode | string | Timecode of thumbnail. |
timestamp | string (date-time) | The timestamp of when thumbnail was generated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_flow_source_thumbnail | select | flow_arn, region | Describes the thumbnail for the flow source. |
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 |
|---|---|---|
flow_arn | string | The Amazon Resource Name (ARN) of the flow. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_flow_source_thumbnail
Describes the thumbnail for the flow source.
SELECT
flow_arn,
thumbnail,
thumbnail_messages,
timecode,
timestamp
FROM aws.mediaconnect.flow_source_thumbnails
WHERE flow_arn = '{{ flow_arn }}' -- required
AND region = '{{ region }}' -- required
;