DashDvbSettings
- class aws_cdk.aws_mediapackagev2_alpha.DashDvbSettings(*, error_metrics=None, font_download=None)
Bases:
object(experimental) The font download and error reporting information that you want MediaPackage to pass through to the manifest.
- Parameters:
error_metrics (
Optional[Sequence[Union[DashDvbMetricsReporting,Dict[str,Any]]]]) – (experimental) Playback device error reporting settings. Default: - No error metrics configuredfont_download (
Union[DashDvbFontDownload,Dict[str,Any],None]) – (experimental) Subtitle font settings. Default: - No font download configured
- 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_mediapackagev2_alpha as mediapackagev2_alpha dash_dvb_settings = mediapackagev2_alpha.DashDvbSettings( error_metrics=[mediapackagev2_alpha.DashDvbMetricsReporting( reporting_url="reportingUrl", # the properties below are optional probability=123 )], font_download=mediapackagev2_alpha.DashDvbFontDownload( font_family="fontFamily", mime_type="mimeType", url="url" ) )
Attributes
- error_metrics
(experimental) Playback device error reporting settings.
- Default:
No error metrics configured
- Stability:
experimental
- font_download
(experimental) Subtitle font settings.
- Default:
No font download configured
- Stability:
experimental