Interface CfnOriginEndpoint.DashBaseUrlProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOriginEndpoint.DashBaseUrlProperty.Jsii$Proxy
Enclosing class:
CfnOriginEndpoint

@Stability(Stable) public static interface CfnOriginEndpoint.DashBaseUrlProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.mediapackagev2.*;
 DashBaseUrlProperty dashBaseUrlProperty = DashBaseUrlProperty.builder()
         .url("url")
         // the properties below are optional
         .dvbPriority(123)
         .dvbWeight(123)
         .serviceLocation("serviceLocation")
         .build();
 

See Also: