Interface TeletextCaptionSourceOptions

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.381Z") @Stability(Experimental) public interface TeletextCaptionSourceOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for a Teletext 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.*;
 TeletextCaptionSourceOptions teletextCaptionSourceOptions = TeletextCaptionSourceOptions.builder()
         .outputRectangle(CaptionRectangle.builder()
                 .height(123)
                 .leftOffset(123)
                 .topOffset(123)
                 .width(123)
                 .build())
         .pageNumber("pageNumber")
         .build();
 
  • Method Details

    • getOutputRectangle

      @Stability(Experimental) @Nullable default CaptionRectangle getOutputRectangle()
      (experimental) The caption rectangle to use when converting this source to EBU-TT-D or TTML.

      Default: - no rectangle (service default)

    • getPageNumber

      @Stability(Experimental) @Nullable default String getPageNumber()
      (experimental) The Teletext page number to extract captions from, as a hexadecimal string with no 0x prefix (range 1008FF).

      Unused for passthrough.

      Default: - MediaLive service default

    • builder

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