Class: Aws::MediaLive::Types::InputChannelLevel

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass InputChannelLevel data as a hash:

{
  gain: 1, # required
  input_channel: 1, # required
}

Input Channel Level

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#gainInteger

Remixing value. Units are in dB and acceptable values are within the range from -60 (mute) and 6 dB.

Returns:

  • (Integer)


9820
9821
9822
9823
9824
9825
# File 'lib/aws-sdk-medialive/types.rb', line 9820

class InputChannelLevel < Struct.new(
  :gain,
  :input_channel)
  SENSITIVE = []
  include Aws::Structure
end

#input_channelInteger

The index of the input channel used as a source.

Returns:

  • (Integer)


9820
9821
9822
9823
9824
9825
# File 'lib/aws-sdk-medialive/types.rb', line 9820

class InputChannelLevel < Struct.new(
  :gain,
  :input_channel)
  SENSITIVE = []
  include Aws::Structure
end