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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTeletextCaptionSourceOptionsstatic final classAn implementation forTeletextCaptionSourceOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default CaptionRectangle(experimental) The caption rectangle to use when converting this source to EBU-TT-D or TTML.default String(experimental) The Teletext page number to extract captions from, as a hexadecimal string with no0xprefix (range100–8FF).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputRectangle
(experimental) The caption rectangle to use when converting this source to EBU-TT-D or TTML.Default: - no rectangle (service default)
-
getPageNumber
(experimental) The Teletext page number to extract captions from, as a hexadecimal string with no0xprefix (range100–8FF).Unused for passthrough.
Default: - MediaLive service default
-
builder
-