Class: Aws::MediaConvert::Types::Timing

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mediaconvert/types.rb

Overview

Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#finish_timeTime

The time, in Unix epoch format, that the transcoding job finished

Returns:

  • (Time)


11996
11997
11998
11999
12000
12001
12002
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11996

class Timing < Struct.new(
  :finish_time,
  :start_time,
  :submit_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The time, in Unix epoch format, that transcoding for the job began.

Returns:

  • (Time)


11996
11997
11998
11999
12000
12001
12002
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11996

class Timing < Struct.new(
  :finish_time,
  :start_time,
  :submit_time)
  SENSITIVE = []
  include Aws::Structure
end

#submit_timeTime

The time, in Unix epoch format, that you submitted the job.

Returns:

  • (Time)


11996
11997
11998
11999
12000
12001
12002
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11996

class Timing < Struct.new(
  :finish_time,
  :start_time,
  :submit_time)
  SENSITIVE = []
  include Aws::Structure
end