Class: Aws::IoT::Types::JobExecutionSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::JobExecutionSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The job execution summary.
Instance Attribute Summary collapse
-
#execution_number ⇒ Integer
A string (consisting of the digits “0” through “9”) which identifies this particular job execution on this particular device.
-
#last_updated_at ⇒ Time
The time, in milliseconds since the epoch, when the job execution was last updated.
-
#queued_at ⇒ Time
The time, in milliseconds since the epoch, when the job execution was queued.
-
#started_at ⇒ Time
The time, in milliseconds since the epoch, when the job execution started.
-
#status ⇒ String
The status of the job execution.
Instance Attribute Details
#execution_number ⇒ Integer
A string (consisting of the digits “0” through “9”) which identifies this particular job execution on this particular device. It can be used later in commands which return or update job execution information.
5630 5631 5632 5633 5634 5635 5636 5637 |
# File 'lib/aws-sdk-iot/types.rb', line 5630 class JobExecutionSummary < Struct.new( :status, :queued_at, :started_at, :last_updated_at, :execution_number) include Aws::Structure end |
#last_updated_at ⇒ Time
The time, in milliseconds since the epoch, when the job execution was last updated.
5630 5631 5632 5633 5634 5635 5636 5637 |
# File 'lib/aws-sdk-iot/types.rb', line 5630 class JobExecutionSummary < Struct.new( :status, :queued_at, :started_at, :last_updated_at, :execution_number) include Aws::Structure end |
#queued_at ⇒ Time
The time, in milliseconds since the epoch, when the job execution was queued.
5630 5631 5632 5633 5634 5635 5636 5637 |
# File 'lib/aws-sdk-iot/types.rb', line 5630 class JobExecutionSummary < Struct.new( :status, :queued_at, :started_at, :last_updated_at, :execution_number) include Aws::Structure end |
#started_at ⇒ Time
The time, in milliseconds since the epoch, when the job execution started.
5630 5631 5632 5633 5634 5635 5636 5637 |
# File 'lib/aws-sdk-iot/types.rb', line 5630 class JobExecutionSummary < Struct.new( :status, :queued_at, :started_at, :last_updated_at, :execution_number) include Aws::Structure end |
#status ⇒ String
The status of the job execution.
5630 5631 5632 5633 5634 5635 5636 5637 |
# File 'lib/aws-sdk-iot/types.rb', line 5630 class JobExecutionSummary < Struct.new( :status, :queued_at, :started_at, :last_updated_at, :execution_number) include Aws::Structure end |