Class: Aws::MediaConnect::Types::RouterInputMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::RouterInputMetadata
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
Note:
RouterInputMetadata is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RouterInputMetadata corresponding to the set member.
Metadata information associated with the router input, including stream details and connection state.
Direct Known Subclasses
Defined Under Namespace
Classes: TransportStreamMediaInfo, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#transport_stream_media_info ⇒ Types::TransportMediaInfo
The metadata of the transport stream in the current flow’s source.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#transport_stream_media_info ⇒ Types::TransportMediaInfo
The metadata of the transport stream in the current flow’s source.
6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6024 class RouterInputMetadata < Struct.new( :transport_stream_media_info, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TransportStreamMediaInfo < RouterInputMetadata; end class Unknown < RouterInputMetadata; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6024 6025 6026 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6024 def unknown @unknown end |