interface AudioChannelMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.AudioChannelMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_AudioChannelMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.AudioChannelMappingProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.AudioChannelMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » AudioChannelMappingProperty |
The settings for remixing audio.
The parent of this entity is RemixSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const audioChannelMappingProperty: medialive_mixins.CfnChannelPropsMixin.AudioChannelMappingProperty = {
inputChannelLevels: [{
gain: 123,
inputChannel: 123,
}],
outputChannel: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| input | IResolvable | (IResolvable | Input)[] | The indices and gain values for each input channel that should be remixed into this output channel. |
| output | number | The index of the output channel that is being produced. |
inputChannelLevels?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
The indices and gain values for each input channel that should be remixed into this output channel.
outputChannel?
Type:
number
(optional)
The index of the output channel that is being produced.

.NET
Go
Java
Python
TypeScript