Class: Aws::MediaConnect::Types::RouterInputMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::RouterInputMetadata
- Defined in:
- gems/aws-sdk-mediaconnect/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.
6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 6220 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
6220 6221 6222 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 6220 def unknown @unknown end |