Class: Aws::MediaTailor::Types::PrefetchConsumption
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::PrefetchConsumption
- Defined in:
- gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb
Overview
A complex type that contains settings that determine how and when that MediaTailor places prefetched ads into upcoming ad breaks.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#avail_matching_criteria ⇒ Array<Types::AvailMatchingCriteria>
If you only want MediaTailor to insert prefetched ads into avails (ad breaks) that match specific dynamic variables, such as
scte.event_id
, set the avail matching criteria. -
#end_time ⇒ Time
The time when MediaTailor no longer considers the prefetched ads for use in an ad break.
-
#start_time ⇒ Time
The time when prefetched ads are considered for use in an ad break.
Instance Attribute Details
#avail_matching_criteria ⇒ Array<Types::AvailMatchingCriteria>
If you only want MediaTailor to insert prefetched ads into avails
(ad breaks) that match specific dynamic variables, such as
scte.event_id
, set the avail matching criteria.
2831 2832 2833 2834 2835 2836 2837 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2831 class PrefetchConsumption < Struct.new( :avail_matching_criteria, :end_time, :start_time) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
The time when MediaTailor no longer considers the prefetched ads for
use in an ad break. MediaTailor automatically deletes prefetch
schedules no less than seven days after the end time. If you'd like
to manually delete the prefetch schedule, you can call
DeletePrefetchSchedule
.
2831 2832 2833 2834 2835 2836 2837 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2831 class PrefetchConsumption < Struct.new( :avail_matching_criteria, :end_time, :start_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The time when prefetched ads are considered for use in an ad break.
If you don't specify StartTime
, the prefetched ads are available
after MediaTailor retrives them from the ad decision server.
2831 2832 2833 2834 2835 2836 2837 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2831 class PrefetchConsumption < Struct.new( :avail_matching_criteria, :end_time, :start_time) SENSITIVE = [] include Aws::Structure end |