Interface CfnPrefetchScheduleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrefetchScheduleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:30.199Z")
@Stability(Stable)
public interface CfnPrefetchScheduleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPrefetchSchedulePropsMixin.
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.*;
CfnPrefetchScheduleMixinProps cfnPrefetchScheduleMixinProps = CfnPrefetchScheduleMixinProps.builder()
.consumption(PrefetchConsumptionProperty.builder()
.availMatchingCriteria(List.of(AvailMatchingCriteriaProperty.builder()
.dynamicVariable("dynamicVariable")
.operator("operator")
.build()))
.endTime("endTime")
.startTime("startTime")
.build())
.name("name")
.playbackConfigurationName("playbackConfigurationName")
.recurringPrefetchConfiguration(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())
.retrieval(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())
.scheduleType("scheduleType")
.streamId("streamId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrefetchScheduleMixinPropsstatic final classAn implementation forCfnPrefetchScheduleMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.PrefetchConsumptionPropertydefault StringgetName()The name to assign to the prefetch schedule.default StringThe name of the playback configuration.default ObjectReturns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationPropertydefault ObjectReturns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.PrefetchRetrievalPropertydefault StringThe frequency that MediaTailor creates prefetch schedules.default StringAn optional stream identifier that MediaTailor uses to prefetch ads for multiple streams that use the same playback configuration.getTags()The tags assigned to the prefetch schedule.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConsumption
Returns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.PrefetchConsumptionProperty- See Also:
-
getName
The name to assign to the prefetch schedule.- See Also:
-
getPlaybackConfigurationName
The name of the playback configuration.- See Also:
-
getRecurringPrefetchConfiguration
Returns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty- See Also:
-
getRetrieval
Returns union: eitherIResolvableorCfnPrefetchSchedulePropsMixin.PrefetchRetrievalProperty- See Also:
-
getScheduleType
The frequency that MediaTailor creates prefetch schedules.- See Also:
-
getStreamId
An optional stream identifier that MediaTailor uses to prefetch ads for multiple streams that use the same playback configuration.- See Also:
-
getTags
The tags assigned to the prefetch schedule.- See Also:
-
builder
-