Interface Scte20CaptionSourceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Scte20CaptionSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.323Z")
@Stability(Experimental)
public interface Scte20CaptionSourceOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Options for an SCTE-20 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;
Scte20CaptionSourceOptions scte20CaptionSourceOptions = Scte20CaptionSourceOptions.builder()
.convert608To708(convert608To708)
.source608ChannelNumber(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forScte20CaptionSourceOptionsstatic final classAn implementation forScte20CaptionSourceOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Convert608To708(experimental) Whether to upconvert 608 captions to 708.default Number(experimental) The 608/708 channel number within the video track to extract captions from.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConvert608To708
(experimental) Whether to upconvert 608 captions to 708.Default: Convert608To708.DISABLED
-
getSource608ChannelNumber
(experimental) The 608/708 channel number within the video track to extract captions from.Default: - MediaLive service default
-
builder
- Returns:
- a
Scte20CaptionSourceOptions.BuilderofScte20CaptionSourceOptions
-