Interface CfnPrefetchSchedule.PrefetchRetrievalProperty

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

@Stability(Stable) public static interface CfnPrefetchSchedule.PrefetchRetrievalProperty extends software.amazon.jsii.JsiiSerializable
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.mediatailor.*;
 PrefetchRetrievalProperty prefetchRetrievalProperty = PrefetchRetrievalProperty.builder()
         .endTime("endTime")
         // the properties below are optional
         .dynamicVariables(Map.of(
                 "dynamicVariablesKey", "dynamicVariables"))
         .startTime("startTime")
         .trafficShapingRetrievalWindow(TrafficShapingRetrievalWindowProperty.builder()
                 .retrievalWindowDurationSeconds(123)
                 .build())
         .trafficShapingTpsConfiguration(TrafficShapingTpsConfigurationProperty.builder()
                 .peakConcurrentUsers(123)
                 .peakTps(123)
                 .build())
         .trafficShapingType("trafficShapingType")
         .build();
 

See Also: