interface DashDvbMetricsReporting
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.Alpha.DashDvbMetricsReporting |
Go | github.com/aws/aws-cdk-go/awsmediapackagev2alpha/v2#DashDvbMetricsReporting |
Java | software.amazon.awscdk.services.mediapackagev2.alpha.DashDvbMetricsReporting |
Python | aws_cdk.aws_mediapackagev2_alpha.DashDvbMetricsReporting |
TypeScript (source) | @aws-cdk/aws-mediapackagev2-alpha ยป DashDvbMetricsReporting |
For use with DVB-DASH profiles only.
The settings for error reporting from the playback device that you want AWS Elemental 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 * as mediapackagev2_alpha from '@aws-cdk/aws-mediapackagev2-alpha';
const dashDvbMetricsReporting: mediapackagev2_alpha.DashDvbMetricsReporting = {
reportingUrl: 'reportingUrl',
// the properties below are optional
probability: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| reporting | string | The URL where playback devices send error reports. |
| probability? | number | The number of playback devices per 1000 that will send error reports to the reporting URL. |
reportingUrl
Type:
string
The URL where playback devices send error reports.
probability?
Type:
number
(optional, default: No probability specified)
The number of playback devices per 1000 that will send error reports to the reporting URL.
This represents the probability that a playback device will be a reporting player for this session.

.NET
Go
Java
Python
TypeScript (