interface DashDvbSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.CfnOriginEndpoint.DashDvbSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_DashDvbSettingsProperty |
Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty |
Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnOriginEndpoint » DashDvbSettingsProperty |
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 { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const dashDvbSettingsProperty: mediapackagev2.CfnOriginEndpoint.DashDvbSettingsProperty = {
errorMetrics: [{
reportingUrl: 'reportingUrl',
// the properties below are optional
probability: 123,
}],
fontDownload: {
fontFamily: 'fontFamily',
mimeType: 'mimeType',
url: 'url',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| error | IResolvable | (IResolvable | Dash)[] | Playback device error reporting settings. |
| font | IResolvable | Dash | Subtitle font settings. |
errorMetrics?
Type:
IResolvable | (IResolvable | Dash)[]
(optional)
Playback device error reporting settings.
fontDownload?
Type:
IResolvable | Dash
(optional)
Subtitle font settings.

.NET
Go
Java
Python
TypeScript