WebvttDestinationProps

class aws_cdk.aws_medialive_alpha.WebvttDestinationProps(*, style_control=None)

Bases: object

(experimental) Properties for WebVTT caption output.

Parameters:

style_control (Optional[WebvttStyleControl]) – (experimental) Whether to pass through source color and position to the WebVTT output. PASSTHROUGH is only valid for EMBEDDED or TELETEXT sources. Default: WebvttStyleControl.NO_STYLE_DATA

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

# webvtt_style_control: medialive_alpha.WebvttStyleControl

webvtt_destination_props = medialive_alpha.WebvttDestinationProps(
    style_control=webvtt_style_control
)

Attributes

style_control

(experimental) Whether to pass through source color and position to the WebVTT output.

PASSTHROUGH is only valid for EMBEDDED or TELETEXT sources.

Default:

WebvttStyleControl.NO_STYLE_DATA

Stability:

experimental