Class: Aws::MediaConvert::Types::Timing
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::Timing
- 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
-
#finish_time ⇒ Time
The time, in Unix epoch format, that the transcoding job finished.
-
#start_time ⇒ Time
The time, in Unix epoch format, that transcoding for the job began.
-
#submit_time ⇒ Time
The time, in Unix epoch format, that you submitted the job.
Instance Attribute Details
#finish_time ⇒ Time
The time, in Unix epoch format, that the transcoding job finished
12401 12402 12403 12404 12405 12406 12407 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 12401 class Timing < Struct.new( :finish_time, :start_time, :submit_time) SENSITIVE = [] include Aws::Structure end |