router_input_source_metadatas
Creates, updates, deletes, gets or lists a router_input_source_metadatas resource.
Overview
| Name | router_input_source_metadatas |
| Type | Resource |
| Id | aws.mediaconnect.router_input_source_metadatas |
Fields
The following fields are returned by SELECT queries:
- get_router_input_source_metadata
| Name | Datatype | Description |
|---|---|---|
arn | string | The Amazon Resource Name (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. |
source_metadata_details | object | Detailed metadata information about the router input source, including connection state, timestamps, and stream configuration. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_router_input_source_metadata | select | arn, region | Retrieves detailed metadata information about a specific router input source, including stream details and connection state. |
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 to retrieve metadata for. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_router_input_source_metadata
Retrieves detailed metadata information about a specific router input source, including stream details and connection state.
SELECT
arn,
name,
source_metadata_details
FROM aws.mediaconnect.router_input_source_metadatas
WHERE arn = '{{ arn }}' -- required
AND region = '{{ region }}' -- required
;