Interface Scte27CaptionSourceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Scte27CaptionSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.324Z")
@Stability(Experimental)
public interface Scte27CaptionSourceOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Options for an SCTE-27 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;
Scte27CaptionSourceOptions scte27CaptionSourceOptions = Scte27CaptionSourceOptions.builder()
.ocrLanguage(ocrLanguage)
.pid(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forScte27CaptionSourceOptionsstatic final classAn implementation forScte27CaptionSourceOptions -
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 to extract captions from.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 to extract captions from.See the MediaLive docs for how PID and
languageCodeinteract.Default: - MediaLive service default
-
builder
- Returns:
- a
Scte27CaptionSourceOptions.BuilderofScte27CaptionSourceOptions
-