Interface CfnPrefetchSchedulePropsMixin.PrefetchRetrievalProperty

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

@Stability(Stable) public static interface CfnPrefetchSchedulePropsMixin.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.cfnpropertymixins.services.mediatailor.*;
 PrefetchRetrievalProperty prefetchRetrievalProperty = PrefetchRetrievalProperty.builder()
         .dynamicVariables(Map.of(
                 "dynamicVariablesKey", "dynamicVariables"))
         .endTime("endTime")
         .startTime("startTime")
         .trafficShapingRetrievalWindow(TrafficShapingRetrievalWindowProperty.builder()
                 .retrievalWindowDurationSeconds(123)
                 .build())
         .trafficShapingTpsConfiguration(TrafficShapingTpsConfigurationProperty.builder()
                 .peakConcurrentUsers(123)
                 .peakTps(123)
                 .build())
         .trafficShapingType("trafficShapingType")
         .build();
 

See Also: