Interface CfnChannel.RemixSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.RemixSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.RemixSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.medialive.*; RemixSettingsProperty remixSettingsProperty = RemixSettingsProperty.builder() .channelMappings(List.of(AudioChannelMappingProperty.builder() .inputChannelLevels(List.of(InputChannelLevelProperty.builder() .gain(123) .inputChannel(123) .build())) .outputChannel(123) .build())) .channelsIn(123) .channelsOut(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.RemixSettingsProperty
static final class
An implementation forCfnChannel.RemixSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelMappings
A mapping of input channels to output channels, with appropriate gain adjustments. -
getChannelsIn
The number of input channels to be used. -
getChannelsOut
The number of output channels to be produced.Valid values: 1, 2, 4, 6, 8.
-
builder
-