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.
3412 3413 3414 3415 3416 3417 3418 |
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3412 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.
3412 3413 3414 3415 3416 3417 3418 |
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3412 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.
3412 3413 3414 3415 3416 3417 3418 |
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 3412 class Timing < Struct.new( :submit_time_millis, :start_time_millis, :finish_time_millis) SENSITIVE = [] include Aws::Structure end |