Interface CfnPrefetchSchedule.RecurringPrefetchConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrefetchSchedule.RecurringPrefetchConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnPrefetchSchedule
@Stability(Stable)
public static interface CfnPrefetchSchedule.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.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())
// the properties below are optional
.startTime("startTime")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPrefetchSchedule.RecurringPrefetchConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The end time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time.Returns union: eitherIResolvableorCfnPrefetchSchedule.RecurringConsumptionPropertyReturns union: eitherIResolvableorCfnPrefetchSchedule.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: eitherIResolvableorCfnPrefetchSchedule.RecurringConsumptionProperty- See Also:
-
getRecurringRetrieval
Returns union: eitherIResolvableorCfnPrefetchSchedule.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 CfnPrefetchSchedule.RecurringPrefetchConfigurationProperty.Builder builder()
-