Interface EmbeddedCaptionSourceOptions

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.046Z") @Stability(Experimental) public interface EmbeddedCaptionSourceOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for an embedded (CEA-608/708) caption source.

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.*;
 Convert608To708 convert608To708;
 Scte20Detection scte20Detection;
 EmbeddedCaptionSourceOptions embeddedCaptionSourceOptions = EmbeddedCaptionSourceOptions.builder()
         .convert608To708(convert608To708)
         .scte20Detection(scte20Detection)
         .source608ChannelNumber(123)
         .build();
 
  • Method Details

    • getConvert608To708

      @Stability(Experimental) @Nullable default Convert608To708 getConvert608To708()
      (experimental) Whether to upconvert 608 captions to 708.

      Default: Convert608To708.DISABLED

    • getScte20Detection

      @Stability(Experimental) @Nullable default Scte20Detection getScte20Detection()
      (experimental) SCTE-20 detection mode.

      Default: Scte20Detection.OFF

    • getSource608ChannelNumber

      @Stability(Experimental) @Nullable default Number getSource608ChannelNumber()
      (experimental) The 608/708 channel number within the video track to extract captions from.

      Default: - MediaLive service default

    • builder

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