aws-cdk-lib.aws_medialive.CfnChannel.RemixSettingsProperty

interface RemixSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.RemixSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_RemixSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.RemixSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.RemixSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » RemixSettingsProperty

The settings for remixing audio in the output.

The parent of this entity is AudioDescription.

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 remixSettingsProperty: medialive.CfnChannel.RemixSettingsProperty = {
  channelMappings: [{
    inputChannelLevels: [{
      gain: 123,
      inputChannel: 123,
    }],
    outputChannel: 123,
  }],
  channelsIn: 123,
  channelsOut: 123,
};

Properties

NameTypeDescription
channelMappings?IResolvable | IResolvable | AudioChannelMappingProperty[]A mapping of input channels to output channels, with appropriate gain adjustments.
channelsIn?numberThe number of input channels to be used.
channelsOut?numberThe number of output channels to be produced.

channelMappings?

Type: IResolvable | IResolvable | AudioChannelMappingProperty[] (optional)

A mapping of input channels to output channels, with appropriate gain adjustments.


channelsIn?

Type: number (optional)

The number of input channels to be used.


channelsOut?

Type: number (optional)

The number of output channels to be produced.

Valid values: 1, 2, 4, 6, 8.