interface InputChannelLevelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.InputChannelLevelProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_InputChannelLevelProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.InputChannelLevelProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.InputChannelLevelProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » InputChannelLevelProperty |
The setting to remix the audio.
The parent of this entity is AudioChannelMappings.
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 inputChannelLevelProperty: medialive_mixins.CfnChannelPropsMixin.InputChannelLevelProperty = {
gain: 123,
inputChannel: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| gain? | number | The remixing value. |
| input | number | The index of the input channel that is used as a source. |
gain?
Type:
number
(optional)
The remixing value.
Units are in dB, and acceptable values are within the range from -60 (mute) to 6 dB.
inputChannel?
Type:
number
(optional)
The index of the input channel that is used as a source.

.NET
Go
Java
Python
TypeScript