Class: Aws::ElasticTranscoder::Types::Timing
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ElasticTranscoder::Types::Timing
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-elastictranscoder/types.rb
 
Overview
Details about the timing of a job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #finish_time_millis  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the job finished transcoding, in epoch milliseconds.
 - 
  
    
      #start_time_millis  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the job began transcoding, in epoch milliseconds.
 - 
  
    
      #submit_time_millis  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the job was submitted to Elastic Transcoder, in epoch milliseconds.
 
Instance Attribute Details
#finish_time_millis ⇒ Integer
The time the job finished transcoding, in epoch milliseconds.
      3423 3424 3425 3426 3427 3428 3429  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 3423 class Timing < Struct.new( :submit_time_millis, :start_time_millis, :finish_time_millis) SENSITIVE = [] include Aws::Structure end  | 
  
#start_time_millis ⇒ Integer
The time the job began transcoding, in epoch milliseconds.
      3423 3424 3425 3426 3427 3428 3429  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 3423 class Timing < Struct.new( :submit_time_millis, :start_time_millis, :finish_time_millis) SENSITIVE = [] include Aws::Structure end  | 
  
#submit_time_millis ⇒ Integer
The time the job was submitted to Elastic Transcoder, in epoch milliseconds.
      3423 3424 3425 3426 3427 3428 3429  | 
    
      # File 'lib/aws-sdk-elastictranscoder/types.rb', line 3423 class Timing < Struct.new( :submit_time_millis, :start_time_millis, :finish_time_millis) SENSITIVE = [] include Aws::Structure end  |