Class: Aws::MediaConnect::Types::RouterInputProtocolConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::RouterInputProtocolConfiguration
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
RouterInputProtocolConfiguration is a union - when making an API calls you must set exactly one of the members.
RouterInputProtocolConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RouterInputProtocolConfiguration corresponding to the set member.
The protocol configuration settings for a router input.
Defined Under Namespace
Classes: Rist, Rtp, SrtCaller, SrtListener, Unknown
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.
-
#srt_caller ⇒ Types::SrtCallerRouterInputConfiguration
The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in caller mode, including the source address and port, minimum latency, stream ID, and decryption key configuration.
-
#srt_listener ⇒ Types::SrtListenerRouterInputConfiguration
The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and decryption key configuration.
-
#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.
6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 6327 class RouterInputProtocolConfiguration < Struct.new( :rist, :srt_listener, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterInputProtocolConfiguration; end class SrtListener < RouterInputProtocolConfiguration; end class SrtCaller < RouterInputProtocolConfiguration; end class Rtp < RouterInputProtocolConfiguration; end class Unknown < RouterInputProtocolConfiguration; 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.
6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 6327 class RouterInputProtocolConfiguration < Struct.new( :rist, :srt_listener, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterInputProtocolConfiguration; end class SrtListener < RouterInputProtocolConfiguration; end class SrtCaller < RouterInputProtocolConfiguration; end class Rtp < RouterInputProtocolConfiguration; end class Unknown < RouterInputProtocolConfiguration; end end |
#srt_caller ⇒ Types::SrtCallerRouterInputConfiguration
The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in caller mode, including the source address and port, minimum latency, stream ID, and decryption key configuration.
6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 6327 class RouterInputProtocolConfiguration < Struct.new( :rist, :srt_listener, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterInputProtocolConfiguration; end class SrtListener < RouterInputProtocolConfiguration; end class SrtCaller < RouterInputProtocolConfiguration; end class Rtp < RouterInputProtocolConfiguration; end class Unknown < RouterInputProtocolConfiguration; end end |
#srt_listener ⇒ Types::SrtListenerRouterInputConfiguration
The configuration settings for a router input using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and decryption key configuration.
6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 6327 class RouterInputProtocolConfiguration < Struct.new( :rist, :srt_listener, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterInputProtocolConfiguration; end class SrtListener < RouterInputProtocolConfiguration; end class SrtCaller < RouterInputProtocolConfiguration; end class Rtp < RouterInputProtocolConfiguration; end class Unknown < RouterInputProtocolConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6327 6328 6329 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 6327 def unknown @unknown end |