Class: Aws::MediaLive::Types::InputDeviceConfigurableSettings

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 InputDeviceConfigurableSettings data as a hash:

{
  configured_input: "AUTO", # accepts AUTO, HDMI, SDI
  max_bitrate: 1,
}

Configurable settings for the input device.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#configured_inputString

The input source that you want to use. If the device has a source connected to only one of its input ports, or if you don’t care which source the device sends, specify Auto. If the device has sources connected to both its input ports, and you want to use a specific source, specify the source.

Returns:

  • (String)


10036
10037
10038
10039
10040
10041
# File 'lib/aws-sdk-medialive/types.rb', line 10036

class InputDeviceConfigurableSettings < Struct.new(
  :configured_input,
  :max_bitrate)
  SENSITIVE = []
  include Aws::Structure
end

#max_bitrateInteger

The maximum bitrate in bits per second. Set a value here to throttle the bitrate of the source video.

Returns:

  • (Integer)


10036
10037
10038
10039
10040
10041
# File 'lib/aws-sdk-medialive/types.rb', line 10036

class InputDeviceConfigurableSettings < Struct.new(
  :configured_input,
  :max_bitrate)
  SENSITIVE = []
  include Aws::Structure
end