interface InputChannelLevel
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputChannelLevel |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputChannelLevel |
Java | software.amazon.awscdk.services.medialive.alpha.InputChannelLevel |
Python | aws_cdk.aws_medialive_alpha.InputChannelLevel |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputChannelLevel |
An input channel level for audio remixing.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const inputChannelLevel: medialive_alpha.InputChannelLevel = {
inputChannel: 123,
// the properties below are optional
gain: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| input | number | The index of the input channel to use as a source. |
| gain? | number | The remixing gain in dB (-60 to 6). |
inputChannel
Type:
number
The index of the input channel to use as a source.
gain?
Type:
number
(optional, default: 0)
The remixing gain in dB (-60 to 6).

.NET
Go
Java
Python
TypeScript (