Interface EbuTtDDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EbuTtDDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.044Z")
@Stability(Experimental)
public interface EbuTtDDestinationProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for EBU-TT-D caption output.
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.*;
EbuTtDFillLineGap ebuTtDFillLineGap;
EbuTtDStyleControl ebuTtDStyleControl;
EbuTtDDestinationProps ebuTtDDestinationProps = EbuTtDDestinationProps.builder()
.copyrightHolder("copyrightHolder")
.defaultFontSize(123)
.defaultLineHeight(123)
.fillLineGap(ebuTtDFillLineGap)
.fontFamily("fontFamily")
.styleControl(ebuTtDStyleControl)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEbuTtDDestinationPropsstatic final classAn implementation forEbuTtDDestinationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default String(experimental) The copyright holder included in the TTML copyright metadata tag.default Number(experimental) The default font size.default Number(experimental) The default line height.default EbuTtDFillLineGap(experimental) How to handle the gap between multi-line captions.default String(experimental) A comma-separated list of font families to include (valid only whenstyleControlis INCLUDE).default EbuTtDStyleControl(experimental) Whether source style information is included in the EBU-TT-D font data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCopyrightHolder
(experimental) The copyright holder included in the TTML copyright metadata tag.Default: - no copyright holder
-
getDefaultFontSize
(experimental) The default font size.Default: - service default
-
getDefaultLineHeight
(experimental) The default line height.Default: - service default
-
getFillLineGap
(experimental) How to handle the gap between multi-line captions.Default: - service default
-
getFontFamily
(experimental) A comma-separated list of font families to include (valid only whenstyleControlis INCLUDE).Default: - 'monospaced'
-
getStyleControl
(experimental) Whether source style information is included in the EBU-TT-D font data.Default: - service default
-
builder
- Returns:
- a
EbuTtDDestinationProps.BuilderofEbuTtDDestinationProps
-