interface AudioPreMixerSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.AudioPreMixerSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_AudioPreMixerSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.AudioPreMixerSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.AudioPreMixerSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » AudioPreMixerSettingsProperty |
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 audioPreMixerSettingsProperty: medialive.CfnChannel.AudioPreMixerSettingsProperty = {
audioNormalizationSettings: {
algorithm: 'algorithm',
algorithmControl: 'algorithmControl',
peakCalculation: 'peakCalculation',
peakLimiterThreshold: 123,
targetLkfs: 123,
},
channels: 123,
gainDb: 123,
remixSettings: {
channelMappings: [{
inputChannelLevels: [{
gain: 123,
inputChannel: 123,
}],
outputChannel: 123,
}],
channelsIn: 123,
channelsOut: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | IResolvable | Audio | |
| channels? | number | |
| gain | number | |
| remix | IResolvable | Remix |
audioNormalizationSettings?
Type:
IResolvable | Audio
(optional)
channels?
Type:
number
(optional)
gainDb?
Type:
number
(optional)
remixSettings?
Type:
IResolvable | Remix
(optional)

.NET
Go
Java
Python
TypeScript