Interface CfnOriginEndpoint.DashDvbSettingsProperty

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

@Stability(Stable) public static interface CfnOriginEndpoint.DashDvbSettingsProperty extends software.amazon.jsii.JsiiSerializable
For endpoints that use the DVB-DASH profile only.

The font download and error reporting information that you want MediaPackage to pass through to the manifest.

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.mediapackagev2.*;
 DashDvbSettingsProperty dashDvbSettingsProperty = DashDvbSettingsProperty.builder()
         .errorMetrics(List.of(DashDvbMetricsReportingProperty.builder()
                 .reportingUrl("reportingUrl")
                 // the properties below are optional
                 .probability(123)
                 .build()))
         .fontDownload(DashDvbFontDownloadProperty.builder()
                 .fontFamily("fontFamily")
                 .mimeType("mimeType")
                 .url("url")
                 .build())
         .build();
 

See Also: