Class CfnChannelPropsMixin.AudioChannelMappingProperty
The settings for remixing audio.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MediaLive
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnChannelPropsMixin.AudioChannelMappingProperty : CfnChannelPropsMixin.IAudioChannelMappingProperty
Syntax (vb)
Public Class CfnChannelPropsMixin.AudioChannelMappingProperty Implements CfnChannelPropsMixin.IAudioChannelMappingProperty
Remarks
The parent of this entity is RemixSettings.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MediaLive;
var audioChannelMappingProperty = new AudioChannelMappingProperty {
InputChannelLevels = new [] { new InputChannelLevelProperty {
Gain = 123,
InputChannel = 123
} },
OutputChannel = 123
};
Synopsis
Constructors
| AudioChannelMappingProperty() | The settings for remixing audio. |
Properties
| InputChannelLevels | The indices and gain values for each input channel that should be remixed into this output channel. |
| OutputChannel | The index of the output channel that is being produced. |
Constructors
AudioChannelMappingProperty()
The settings for remixing audio.
public AudioChannelMappingProperty()
Remarks
The parent of this entity is RemixSettings.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.MediaLive;
var audioChannelMappingProperty = new AudioChannelMappingProperty {
InputChannelLevels = new [] { new InputChannelLevelProperty {
Gain = 123,
InputChannel = 123
} },
OutputChannel = 123
};
Properties
InputChannelLevels
The indices and gain values for each input channel that should be remixed into this output channel.
public object? InputChannelLevels { get; set; }
Property Value
Remarks
OutputChannel
The index of the output channel that is being produced.
public double? OutputChannel { get; set; }