Class: Aws::MediaConnect::Types::RouterOutputProtocolConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::RouterOutputProtocolConfiguration
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
RouterOutputProtocolConfiguration is a union - when making an API calls you must set exactly one of the members.
RouterOutputProtocolConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RouterOutputProtocolConfiguration corresponding to the set member.
The protocol configuration settings for a router output.
Defined Under Namespace
Classes: Rist, RtmpPush, Rtp, SrtCaller, SrtListener, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rist ⇒ Types::RistRouterOutputConfiguration
The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
-
#rtmp_push ⇒ Types::RtmpPushRouterOutputConfiguration
The configuration settings for a router output that pushes a stream to a destination using the RTMP (Real-Time Messaging Protocol) protocol, or RTMPS (RTMP over TLS) when TLS encryption is specified.
-
#rtp ⇒ Types::RtpRouterOutputConfiguration
The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
-
#srt_caller ⇒ Types::SrtCallerRouterOutputConfiguration
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.
-
#srt_listener ⇒ Types::SrtListenerRouterOutputConfiguration
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#rist ⇒ Types::RistRouterOutputConfiguration
The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 7106 class RouterOutputProtocolConfiguration < Struct.new( :rist, :srt_listener, :rtmp_push, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterOutputProtocolConfiguration; end class SrtListener < RouterOutputProtocolConfiguration; end class RtmpPush < RouterOutputProtocolConfiguration; end class SrtCaller < RouterOutputProtocolConfiguration; end class Rtp < RouterOutputProtocolConfiguration; end class Unknown < RouterOutputProtocolConfiguration; end end |
#rtmp_push ⇒ Types::RtmpPushRouterOutputConfiguration
The configuration settings for a router output that pushes a stream to a destination using the RTMP (Real-Time Messaging Protocol) protocol, or RTMPS (RTMP over TLS) when TLS encryption is specified. These settings include the destination address and port, the application and stream names, and optional TLS encryption configuration.
7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 7106 class RouterOutputProtocolConfiguration < Struct.new( :rist, :srt_listener, :rtmp_push, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterOutputProtocolConfiguration; end class SrtListener < RouterOutputProtocolConfiguration; end class RtmpPush < RouterOutputProtocolConfiguration; end class SrtCaller < RouterOutputProtocolConfiguration; end class Rtp < RouterOutputProtocolConfiguration; end class Unknown < RouterOutputProtocolConfiguration; end end |
#rtp ⇒ Types::RtpRouterOutputConfiguration
The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 7106 class RouterOutputProtocolConfiguration < Struct.new( :rist, :srt_listener, :rtmp_push, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterOutputProtocolConfiguration; end class SrtListener < RouterOutputProtocolConfiguration; end class RtmpPush < RouterOutputProtocolConfiguration; end class SrtCaller < RouterOutputProtocolConfiguration; end class Rtp < RouterOutputProtocolConfiguration; end class Unknown < RouterOutputProtocolConfiguration; end end |
#srt_caller ⇒ Types::SrtCallerRouterOutputConfiguration
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.
7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 7106 class RouterOutputProtocolConfiguration < Struct.new( :rist, :srt_listener, :rtmp_push, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterOutputProtocolConfiguration; end class SrtListener < RouterOutputProtocolConfiguration; end class RtmpPush < RouterOutputProtocolConfiguration; end class SrtCaller < RouterOutputProtocolConfiguration; end class Rtp < RouterOutputProtocolConfiguration; end class Unknown < RouterOutputProtocolConfiguration; end end |
#srt_listener ⇒ Types::SrtListenerRouterOutputConfiguration
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.
7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 7106 class RouterOutputProtocolConfiguration < Struct.new( :rist, :srt_listener, :rtmp_push, :srt_caller, :rtp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Rist < RouterOutputProtocolConfiguration; end class SrtListener < RouterOutputProtocolConfiguration; end class RtmpPush < RouterOutputProtocolConfiguration; end class SrtCaller < RouterOutputProtocolConfiguration; end class Rtp < RouterOutputProtocolConfiguration; end class Unknown < RouterOutputProtocolConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7106 7107 7108 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 7106 def unknown @unknown end |