Interface AudioTrackConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AudioTrackConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:40.921Z") @Stability(Experimental) public interface AudioTrackConfig extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration for a single audio track in a track-based selector.

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.*;
 AudioPreMixerSettings audioPreMixerSettings;
 AudioTrackConfig audioTrackConfig = AudioTrackConfig.builder()
         .track(123)
         // the properties below are optional
         .premixSettings(audioPreMixerSettings)
         .build();
 
  • Method Details

    • getTrack

      @Stability(Experimental) @NotNull Number getTrack()
      (experimental) The 1-based track number to extract.
    • getPremixSettings

      @Stability(Experimental) @Nullable default AudioPreMixerSettings getPremixSettings()
      (experimental) Pre-mixer settings for this track (gain, channel remix, loudness normalization).

      Default: - no pre-mixing

    • builder

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