interface DashDvbMetricsReportingProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_DashDvbMetricsReportingProperty | 
|  Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty | 
|  Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty | 
|  TypeScript | aws-cdk-lib»aws_mediapackagev2»CfnOriginEndpoint»DashDvbMetricsReportingProperty | 
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 { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const dashDvbMetricsReportingProperty: mediapackagev2.CfnOriginEndpoint.DashDvbMetricsReportingProperty = {
  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)
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.
