Interface CfnOriginEndpointPropsMixin.DashBaseUrlProperty

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

@Stability(Stable) public static interface CfnOriginEndpointPropsMixin.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.cfnpropertymixins.services.mediapackagev2.*;
 DashBaseUrlProperty dashBaseUrlProperty = DashBaseUrlProperty.builder()
         .dvbPriority(123)
         .dvbWeight(123)
         .serviceLocation("serviceLocation")
         .url("url")
         .build();
 

See Also: