Class: Aws::MediaConnect::Types::MergeRouterInputProtocolConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::MergeRouterInputProtocolConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
MergeRouterInputProtocolConfiguration is a union - when making an API calls you must set exactly one of the members.
MergeRouterInputProtocolConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MergeRouterInputProtocolConfiguration corresponding to the set member.
Protocol configuration settings for merge router inputs.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rist ⇒ Types::RistRouterInputConfiguration
The configuration settings for a router input using the RIST (Reliable Internet Stream Transport) protocol, including the port and recovery latency.
-
#rtp ⇒ Types::RtpRouterInputConfiguration
The configuration settings for a Router Input using the RTP (Real-Time Transport Protocol) protocol, including the port and forward error correction state.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#rist ⇒ Types::RistRouterInputConfiguration
The configuration settings for a router input using the RIST (Reliable Internet Stream Transport) protocol, including the port and recovery latency.
4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 4804 class MergeRouterInputProtocolConfiguration < Struct.new( :rtp, :rist, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rtp < MergeRouterInputProtocolConfiguration; end class Rist < MergeRouterInputProtocolConfiguration; end class Unknown < MergeRouterInputProtocolConfiguration; end end |
#rtp ⇒ Types::RtpRouterInputConfiguration
The configuration settings for a Router Input using the RTP (Real-Time Transport Protocol) protocol, including the port and forward error correction state.
4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 4804 class MergeRouterInputProtocolConfiguration < Struct.new( :rtp, :rist, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rtp < MergeRouterInputProtocolConfiguration; end class Rist < MergeRouterInputProtocolConfiguration; end class Unknown < MergeRouterInputProtocolConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4804 4805 4806 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 4804 def unknown @unknown end |