interface AudioChannelMapping
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AudioChannelMapping |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AudioChannelMapping |
Java | software.amazon.awscdk.services.medialive.alpha.AudioChannelMapping |
Python | aws_cdk.aws_medialive_alpha.AudioChannelMapping |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AudioChannelMapping |
A mapping from input channels to an output channel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const audioChannelMapping: medialive_alpha.AudioChannelMapping = {
inputChannelLevels: [{
inputChannel: 123,
// the properties below are optional
gain: 123,
}],
outputChannel: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| input | Input[] | The input channels and their gain levels to mix into this output channel. |
| output | number | The index of the output channel being produced. |
inputChannelLevels
Type:
Input[]
The input channels and their gain levels to mix into this output channel.
outputChannel
Type:
number
The index of the output channel being produced.

.NET
Go
Java
Python
TypeScript (