Class CfnOriginEndpoint.DashDvbSettingsProperty
For endpoints that use the DVB-DASH profile only.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MediaPackageV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnOriginEndpoint.DashDvbSettingsProperty : CfnOriginEndpoint.IDashDvbSettingsProperty
Syntax (vb)
Public Class CfnOriginEndpoint.DashDvbSettingsProperty Implements CfnOriginEndpoint.IDashDvbSettingsProperty
Remarks
The font download and error reporting information that you want MediaPackage to pass through to the manifest.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaPackageV2;
var dashDvbSettingsProperty = new DashDvbSettingsProperty {
ErrorMetrics = new [] { new DashDvbMetricsReportingProperty {
ReportingUrl = "reportingUrl",
// the properties below are optional
Probability = 123
} },
FontDownload = new DashDvbFontDownloadProperty {
FontFamily = "fontFamily",
MimeType = "mimeType",
Url = "url"
}
};
Synopsis
Constructors
| DashDvbSettingsProperty() | For endpoints that use the DVB-DASH profile only. |
Properties
| ErrorMetrics | Playback device error reporting settings. |
| FontDownload | Subtitle font settings. |
Constructors
DashDvbSettingsProperty()
For endpoints that use the DVB-DASH profile only.
public DashDvbSettingsProperty()
Remarks
The font download and error reporting information that you want MediaPackage to pass through to the manifest.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaPackageV2;
var dashDvbSettingsProperty = new DashDvbSettingsProperty {
ErrorMetrics = new [] { new DashDvbMetricsReportingProperty {
ReportingUrl = "reportingUrl",
// the properties below are optional
Probability = 123
} },
FontDownload = new DashDvbFontDownloadProperty {
FontFamily = "fontFamily",
MimeType = "mimeType",
Url = "url"
}
};
Properties
ErrorMetrics
Playback device error reporting settings.
public object? ErrorMetrics { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnOriginEndpoint.IDashDvbMetricsReportingProperty)[]
FontDownload
Subtitle font settings.
public object? FontDownload { get; set; }