InputChannelLevel

class aws_cdk.aws_medialive_alpha.InputChannelLevel(*, input_channel, gain=None)

Bases: object

(experimental) An input channel level for audio remixing.

Parameters:
  • input_channel (Union[int, float]) – (experimental) The index of the input channel to use as a source.

  • gain (Union[int, float, None]) – (experimental) The remixing gain in dB (-60 to 6). Default: 0

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

input_channel_level = medialive_alpha.InputChannelLevel(
    input_channel=123,

    # the properties below are optional
    gain=123
)

Attributes

gain

(experimental) The remixing gain in dB (-60 to 6).

Default:

0

Stability:

experimental

input_channel

(experimental) The index of the input channel to use as a source.

Stability:

experimental