interface DashBaseUrlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackageV2.CfnOriginEndpointPropsMixin.DashBaseUrlProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackagev2#CfnOriginEndpointPropsMixin_DashBaseUrlProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.CfnOriginEndpointPropsMixin.DashBaseUrlProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackagev2.CfnOriginEndpointPropsMixin.DashBaseUrlProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackagev2 » CfnOriginEndpointPropsMixin » DashBaseUrlProperty |
The base URLs to use for retrieving segments.
You can specify multiple locations and indicate the priority and weight for when each should be used, for use in mutli-CDN workflows.
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/cfn-property-mixins';
const dashBaseUrlProperty: mediapackagev2.CfnOriginEndpointPropsMixin.DashBaseUrlProperty = {
dvbPriority: 123,
dvbWeight: 123,
serviceLocation: 'serviceLocation',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| dvb | number | For use with DVB-DASH profiles only. |
| dvb | number | For use with DVB-DASH profiles only. |
| service | string | The name of the source location. |
| url? | string | A source location for segments. |
dvbPriority?
Type:
number
(optional)
For use with DVB-DASH profiles only.
The priority of this location for servings segments. The lower the number, the higher the priority.
dvbWeight?
Type:
number
(optional)
For use with DVB-DASH profiles only.
The weighting for source locations that have the same priority.
serviceLocation?
Type:
string
(optional)
The name of the source location.
url?
Type:
string
(optional)
A source location for segments.

.NET
Go
Java
Python
TypeScript