AudioChannelMapping

class aws_cdk.aws_medialive_alpha.AudioChannelMapping(*, input_channel_levels, output_channel)

Bases: object

(experimental) A mapping from input channels to an output channel.

Parameters:
  • input_channel_levels (Sequence[Union[InputChannelLevel, Dict[str, Any]]]) – (experimental) The input channels and their gain levels to mix into this output channel.

  • output_channel (Union[int, float]) – (experimental) The index of the output channel being produced.

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

audio_channel_mapping = medialive_alpha.AudioChannelMapping(
    input_channel_levels=[medialive_alpha.InputChannelLevel(
        input_channel=123,

        # the properties below are optional
        gain=123
    )],
    output_channel=123
)

Attributes

input_channel_levels

(experimental) The input channels and their gain levels to mix into this output channel.

Stability:

experimental

output_channel

(experimental) The index of the output channel being produced.

Stability:

experimental