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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


1759
1760
1761
1762
1763
1764
# File 'lib/aws-sdk-ivs/types.rb', line 1759

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)


1759
1760
1761
1762
1763
1764
# File 'lib/aws-sdk-ivs/types.rb', line 1759

class Srt < Struct.new(
  :endpoint,
  :passphrase)
  SENSITIVE = [:passphrase]
  include Aws::Structure
end