Interface DvbSubCaptionSourceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DvbSubCaptionSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.027Z")
@Stability(Experimental)
public interface DvbSubCaptionSourceOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Options for a DVB-Sub 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.*;
OcrLanguage ocrLanguage;
DvbSubCaptionSourceOptions dvbSubCaptionSourceOptions = DvbSubCaptionSourceOptions.builder()
.ocrLanguage(ocrLanguage)
.pid(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDvbSubCaptionSourceOptionsstatic final classAn implementation forDvbSubCaptionSourceOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default OcrLanguage(experimental) The OCR language to use when converting this image-based source to text.default NumbergetPid()(experimental) The PID of the source content.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOcrLanguage
(experimental) The OCR language to use when converting this image-based source to text.Default: - MediaLive service default
-
getPid
(experimental) The PID of the source content.Unused for DVB-Sub passthrough.
Default: - MediaLive service default
-
builder
- Returns:
- a
DvbSubCaptionSourceOptions.BuilderofDvbSubCaptionSourceOptions
-