interface DashDvbMetricsReportingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnOriginEndpointPropsMixin.DashDvbMetricsReportingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnOriginEndpointPropsMixin_DashDvbMetricsReportingProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashDvbMetricsReportingProperty |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashDvbMetricsReportingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » CfnOriginEndpointPropsMixin » 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 { mixins as mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
const dashDvbMetricsReportingProperty: mediapackagev2_mixins.CfnOriginEndpointPropsMixin.DashDvbMetricsReportingProperty = {
probability: 123,
reportingUrl: 'reportingUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| probability? | number | The number of playback devices per 1000 that will send error reports to the reporting URL. |
| reporting | 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.
reportingUrl?
Type:
string
(optional)
The URL where playback devices send error reports.

.NET
Go
Java
Python
TypeScript