aws-cdk-lib.aws_medialive.CfnChannel.AudioChannelMappingProperty

interface AudioChannelMappingProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.AudioChannelMappingProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_AudioChannelMappingProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.AudioChannelMappingProperty
Pythonaws_cdk.aws_medialive.CfnChannel.AudioChannelMappingProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » 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 { aws_medialive as medialive } from 'aws-cdk-lib';
const audioChannelMappingProperty: medialive.CfnChannel.AudioChannelMappingProperty = {
  inputChannelLevels: [{
    gain: 123,
    inputChannel: 123,
  }],
  outputChannel: 123,
};

Properties

NameTypeDescription
inputChannelLevels?IResolvable | IResolvable | InputChannelLevelProperty[]The indices and gain values for each input channel that should be remixed into this output channel.
outputChannel?numberThe index of the output channel that is being produced.

inputChannelLevels?

Type: IResolvable | IResolvable | InputChannelLevelProperty[] (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.