Skip to main content

flow_source_metadatas

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

Overview

Nameflow_source_metadatas
TypeResource
Idaws.mediaconnect.flow_source_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
flow_arnstringThe ARN of the flow that DescribeFlowSourceMetadata was performed on.
messagesarrayProvides a status code and message regarding issues found with the flow source metadata.
ndi_infoobjectThe NDI® specific information about the flow's source. This includes the current active NDI sender, a list of all discovered NDI senders, the associated media streams for the active NDI sender, and any relevant status messages.
timestampstring (date-time)The timestamp of the most recent change in metadata for this flow’s source.
transport_media_infoobjectInformation about the flow's transport media.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_flow_source_metadataselectflow_arn, regionThe DescribeFlowSourceMetadata API is used to view information about the flow's source transport stream and programs. This API displays status messages about the flow's source as well as details about the program's video, audio, and other 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.

NameDatatypeDescription
flow_arnstringThe Amazon Resource Name (ARN) of the flow.
regionstringAWS region (default: us-east-1)

SELECT examples

The DescribeFlowSourceMetadata API is used to view information about the flow's source transport stream and programs. This API displays status messages about the flow's source as well as details about the program's video, audio, and other data.

SELECT
flow_arn,
messages,
ndi_info,
timestamp,
transport_media_info
FROM aws.mediaconnect.flow_source_metadatas
WHERE flow_arn = '{{ flow_arn }}' -- required
AND region = '{{ region }}' -- required
;