Class: Aws::MediaTailor::Types::ClipRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::ClipRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediatailor/types.rb
Overview
Clip range configuration for the VOD source associated with the program.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_offset_millis ⇒ Integer
The end offset of the clip range, in milliseconds, starting from the beginning of the VOD source associated with the program.
-
#start_offset_millis ⇒ Integer
The start offset of the clip range, in milliseconds.
Instance Attribute Details
#end_offset_millis ⇒ Integer
The end offset of the clip range, in milliseconds, starting from the beginning of the VOD source associated with the program.
564 565 566 567 568 569 |
# File 'lib/aws-sdk-mediatailor/types.rb', line 564 class ClipRange < Struct.new( :end_offset_millis, :start_offset_millis) SENSITIVE = [] include Aws::Structure end |
#start_offset_millis ⇒ Integer
The start offset of the clip range, in milliseconds. This offset truncates the start at the number of milliseconds into the duration of the VOD source.
564 565 566 567 568 569 |
# File 'lib/aws-sdk-mediatailor/types.rb', line 564 class ClipRange < Struct.new( :end_offset_millis, :start_offset_millis) SENSITIVE = [] include Aws::Structure end |