Class: Aws::MediaPackageV2::Types::Scte
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageV2::Types::Scte
- Defined in:
- gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb
Overview
The SCTE configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#scte_filter ⇒ Array<String>
The SCTE-35 message types that you want to be treated as ad markers in the output.
-
#scte_in_segments ⇒ String
Controls whether SCTE-35 messages are included in segment files.
Instance Attribute Details
#scte_filter ⇒ Array<String>
The SCTE-35 message types that you want to be treated as ad markers in the output.
3606 3607 3608 3609 3610 3611 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 3606 class Scte < Struct.new( :scte_filter, :scte_in_segments) SENSITIVE = [] include Aws::Structure end |
#scte_in_segments ⇒ String
Controls whether SCTE-35 messages are included in segment files.
None – SCTE-35 messages are not included in segments (default)
All – SCTE-35 messages are embedded in segment data
For DASH manifests, when set to All, an InbandEventStream tag
signals that SCTE messages are present in segments. This setting
works independently of manifest ad markers.
3606 3607 3608 3609 3610 3611 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 3606 class Scte < Struct.new( :scte_filter, :scte_in_segments) SENSITIVE = [] include Aws::Structure end |