Interface DvbSubDestinationProps

All Superinterfaces:
CaptionFontStyleProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DvbSubDestinationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.027Z") @Stability(Experimental) public interface DvbSubDestinationProps extends software.amazon.jsii.JsiiSerializable, CaptionFontStyleProps
(experimental) Properties for DVB-Sub captions.

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.*;
 CaptionAlignment captionAlignment;
 CaptionBackgroundColor captionBackgroundColor;
 CaptionFontColor captionFontColor;
 CaptionFontSize captionFontSize;
 CaptionOutlineColor captionOutlineColor;
 CaptionShadowColor captionShadowColor;
 CaptionTeletextGridControl captionTeletextGridControl;
 FileLocation fileLocation;
 DvbSubDestinationProps dvbSubDestinationProps = DvbSubDestinationProps.builder()
         .alignment(captionAlignment)
         .backgroundColor(captionBackgroundColor)
         .backgroundOpacity(123)
         .font(fileLocation)
         .fontColor(captionFontColor)
         .fontOpacity(123)
         .fontResolution(123)
         .fontSize(captionFontSize)
         .outlineColor(captionOutlineColor)
         .outlineSize(123)
         .shadowColor(captionShadowColor)
         .shadowOpacity(123)
         .shadowXOffset(123)
         .shadowYOffset(123)
         .subtitleRows("subtitleRows")
         .teletextGridControl(captionTeletextGridControl)
         .xPosition(123)
         .yPosition(123)
         .build();