Class: Aws::IVS::Types::Srt

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#endpointString

The endpoint to be used when streaming with IVS using the SRT protocol.

Returns:

  • (String)


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

#passphraseString

Auto-generated passphrase to enable encryption. This field is applicable only if the end user has not enabled the insecureIngest option for the channel.

Returns:

  • (String)


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