Class: Aws::MediaTailor::Types::ClipRange
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::MediaTailor::Types::ClipRange
 
- 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
- 
  
    
      #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.
| 621 622 623 624 625 626 | # File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 621 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.
| 621 622 623 624 625 626 | # File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 621 class ClipRange < Struct.new( :end_offset_millis, :start_offset_millis) SENSITIVE = [] include Aws::Structure end |