Interface RemixSettings
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RemixSettings.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.312Z")
@Stability(Experimental)
public interface RemixSettings
extends software.amazon.jsii.JsiiSerializable
(experimental) Audio remix settings for channel remapping.
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.alpha.*;
RemixSettings remixSettings = RemixSettings.builder()
.channelMappings(List.of(AudioChannelMapping.builder()
.inputChannelLevels(List.of(InputChannelLevel.builder()
.inputChannel(123)
// the properties below are optional
.gain(123)
.build()))
.outputChannel(123)
.build()))
// the properties below are optional
.channelsIn(123)
.channelsOut(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRemixSettingsstatic final classAn implementation forRemixSettings -
Method Summary
Modifier and TypeMethodDescriptionstatic RemixSettings.Builderbuilder()(experimental) The channel mappings from input to output.default Number(experimental) The number of input channels.default Number(experimental) The number of output channels.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelMappings
(experimental) The channel mappings from input to output. -
getChannelsIn
(experimental) The number of input channels.Default: - auto-detected
-
getChannelsOut
(experimental) The number of output channels.Valid values: 1, 2, 4, 6, 8.
Default: - auto-detected
-
builder
- Returns:
- a
RemixSettings.BuilderofRemixSettings
-