interface RemixSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.RemixSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_RemixSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.RemixSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.RemixSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » 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/cfn-property-mixins';
const remixSettingsProperty: medialive.CfnChannelPropsMixin.RemixSettingsProperty = {
channelMappings: [{
inputChannelLevels: [{
gain: 123,
inputChannel: 123,
}],
outputChannel: 123,
}],
channelsIn: 123,
channelsOut: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | IResolvable | (IResolvable | Audio)[] | A mapping of input channels to output channels, with appropriate gain adjustments. |
| channels | number | The number of input channels to be used. |
| channels | number | The number of output channels to be produced. |
channelMappings?
Type:
IResolvable | (IResolvable | Audio)[]
(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.

.NET
Go
Java
Python
TypeScript