Interface CfnChannel.AudioChannelMappingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.AudioChannelMappingProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.AudioChannelMappingProperty
extends software.amazon.jsii.JsiiSerializable
The settings for remixing audio.
The parent of this entity is RemixSettings.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.medialive.*; AudioChannelMappingProperty audioChannelMappingProperty = AudioChannelMappingProperty.builder() .inputChannelLevels(List.of(InputChannelLevelProperty.builder() .gain(123) .inputChannel(123) .build())) .outputChannel(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.AudioChannelMappingProperty
static final class
An implementation forCfnChannel.AudioChannelMappingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputChannelLevels
The indices and gain values for each input channel that should be remixed into this output channel.- See Also:
-
getOutputChannel
The index of the output channel that is being produced.- See Also:
-
builder
-