Class: Aws::MediaTailor::Types::ClipRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediatailor/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

Instance Attribute Details

#end_offset_millisInteger

The end offset of the clip range, in milliseconds, starting from the beginning of the VOD source associated with the program.

Returns:

  • (Integer)


564
565
566
567
568
569
# File 'gems/aws-sdk-mediatailor/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_millisInteger

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.

Returns:

  • (Integer)


564
565
566
567
568
569
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 564

class ClipRange < Struct.new(
  :end_offset_millis,
  :start_offset_millis)
  SENSITIVE = []
  include Aws::Structure
end