Class: Aws::MediaTailor::Types::HlsPlaylistSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::HlsPlaylistSettings
- Defined in:
- gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb
Overview
HLS playlist configuration parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ad_markup_type ⇒ Array<String>
Determines the type of SCTE 35 tags to use in ad markup.
-
#manifest_window_seconds ⇒ Integer
The total duration (in seconds) of each manifest.
Instance Attribute Details
#ad_markup_type ⇒ Array<String>
Determines the type of SCTE 35 tags to use in ad markup. Specify
DATERANGE
to use DATERANGE
tags (for live or VOD content).
Specify SCTE35_ENHANCED
to use EXT-X-CUE-OUT
and EXT-X-CUE-IN
tags (for VOD content only).
2317 2318 2319 2320 2321 2322 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2317 class HlsPlaylistSettings < Struct.new( :ad_markup_type, :manifest_window_seconds) SENSITIVE = [] include Aws::Structure end |
#manifest_window_seconds ⇒ Integer
The total duration (in seconds) of each manifest. Minimum value:
30
seconds. Maximum value: 3600
seconds.
2317 2318 2319 2320 2321 2322 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2317 class HlsPlaylistSettings < Struct.new( :ad_markup_type, :manifest_window_seconds) SENSITIVE = [] include Aws::Structure end |