interface DashBaseUrlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnOriginEndpointPropsMixin.DashBaseUrlProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnOriginEndpointPropsMixin_DashBaseUrlProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashBaseUrlProperty |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashBaseUrlProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » 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 { mixins as mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
const dashBaseUrlProperty: mediapackagev2_mixins.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