Interface CfnChannel.BurnInDestinationSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.BurnInDestinationSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.BurnInDestinationSettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for burn-in captions in the output.

The parent of this entity is CaptionDestinationSettings.

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.*;
 BurnInDestinationSettingsProperty burnInDestinationSettingsProperty = BurnInDestinationSettingsProperty.builder()
         .alignment("alignment")
         .backgroundColor("backgroundColor")
         .backgroundOpacity(123)
         .font(InputLocationProperty.builder()
                 .passwordParam("passwordParam")
                 .uri("uri")
                 .username("username")
                 .build())
         .fontColor("fontColor")
         .fontOpacity(123)
         .fontResolution(123)
         .fontSize("fontSize")
         .outlineColor("outlineColor")
         .outlineSize(123)
         .shadowColor("shadowColor")
         .shadowOpacity(123)
         .shadowXOffset(123)
         .shadowYOffset(123)
         .teletextGridControl("teletextGridControl")
         .xPosition(123)
         .yPosition(123)
         .build();
 

See Also: