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();
 
  • Method Details

    • getChannelMappings

      @Stability(Experimental) @NotNull List<AudioChannelMapping> getChannelMappings()
      (experimental) The channel mappings from input to output.
    • getChannelsIn

      @Stability(Experimental) @Nullable default Number getChannelsIn()
      (experimental) The number of input channels.

      Default: - auto-detected

    • getChannelsOut

      @Stability(Experimental) @Nullable default Number getChannelsOut()
      (experimental) The number of output channels.

      Valid values: 1, 2, 4, 6, 8.

      Default: - auto-detected

    • builder

      @Stability(Experimental) static RemixSettings.Builder builder()
      Returns:
      a RemixSettings.Builder of RemixSettings