Interface DashDvbSettings

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DashDvbSettings.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T09:32:03.710Z") @Stability(Experimental) public interface DashDvbSettings extends software.amazon.jsii.JsiiSerializable
(experimental) 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.alpha.*;
 DashDvbSettings dashDvbSettings = DashDvbSettings.builder()
         .errorMetrics(List.of(DashDvbMetricsReporting.builder()
                 .reportingUrl("reportingUrl")
                 // the properties below are optional
                 .probability(123)
                 .build()))
         .fontDownload(DashDvbFontDownload.builder()
                 .fontFamily("fontFamily")
                 .mimeType("mimeType")
                 .url("url")
                 .build())
         .build();