Class: Aws::IVS::Types::Srt
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::Srt
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
Specifies information needed to stream using the SRT protocol.
Constant Summary collapse
- SENSITIVE =
[:passphrase]
Instance Attribute Summary collapse
-
#endpoint ⇒ String
The endpoint to be used when streaming with IVS using the SRT protocol.
-
#passphrase ⇒ String
Auto-generated passphrase to enable encryption.
Instance Attribute Details
#endpoint ⇒ String
The endpoint to be used when streaming with IVS using the SRT protocol.
1875 1876 1877 1878 1879 1880 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1875 class Srt < Struct.new( :endpoint, :passphrase) SENSITIVE = [:passphrase] include Aws::Structure end |
#passphrase ⇒ String
Auto-generated passphrase to enable encryption. This field is
applicable only if the end user has not enabled the
insecureIngest
option for the channel.
1875 1876 1877 1878 1879 1880 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1875 class Srt < Struct.new( :endpoint, :passphrase) SENSITIVE = [:passphrase] include Aws::Structure end |