Show / Hide Table of Contents

Class CfnOriginEndpoint.DashDvbSettingsProperty

For endpoints that use the DVB-DASH profile only.

Inheritance
object
CfnOriginEndpoint.DashDvbSettingsProperty
Implements
CfnOriginEndpoint.IDashDvbSettingsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html#cfn-mediapackagev2-originendpoint-dashdvbsettings-errormetrics

Type union: either IResolvable or (either IResolvable or CfnOriginEndpoint.IDashDvbMetricsReportingProperty)[]

FontDownload

Subtitle font settings.

public object? FontDownload { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html#cfn-mediapackagev2-originendpoint-dashdvbsettings-fontdownload

Type union: either IResolvable or CfnOriginEndpoint.IDashDvbFontDownloadProperty

Implements

CfnOriginEndpoint.IDashDvbSettingsProperty
Back to top Generated by DocFX