Interface CfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnPrefetchSchedulePropsMixin
@Stability(Stable)
public static interface CfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty
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.*;
RecurringPrefetchConfigurationProperty recurringPrefetchConfigurationProperty = RecurringPrefetchConfigurationProperty.builder()
.endTime("endTime")
.recurringConsumption(RecurringConsumptionProperty.builder()
.availMatchingCriteria(List.of(AvailMatchingCriteriaProperty.builder()
.dynamicVariable("dynamicVariable")
.operator("operator")
.build()))
.retrievedAdExpirationSeconds(123)
.build())
.recurringRetrieval(RecurringRetrievalProperty.builder()
.delayAfterAvailEndSeconds(123)
.dynamicVariables(Map.of(
"dynamicVariablesKey", "dynamicVariables"))
.trafficShapingRetrievalWindow(TrafficShapingRetrievalWindowProperty.builder()
.retrievalWindowDurationSeconds(123)
.build())
.trafficShapingTpsConfiguration(TrafficShapingTpsConfigurationProperty.builder()
.peakConcurrentUsers(123)
.peakTps(123)
.build())
.trafficShapingType("trafficShapingType")
.build())
.startTime("startTime")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe end time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time.default ObjectReturns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.RecurringConsumptionPropertydefault ObjectReturns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.RecurringRetrievalPropertydefault StringThe start time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndTime
The end time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time.- See Also:
-
getRecurringConsumption
Returns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.RecurringConsumptionProperty- See Also:
-
getRecurringRetrieval
Returns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.RecurringRetrievalProperty- See Also:
-
getStartTime
The start time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time.- See Also:
-
builder
@Stability(Stable) static CfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty.Builder builder()
-