Class: Aws::IoTJobsDataPlane::Types::JobExecutionState
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTJobsDataPlane::Types::JobExecutionState
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotjobsdataplane/types.rb
Overview
Contains data about the state of a job execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The status of the job execution.
-
#status_details ⇒ Hash<String,String>
A collection of name/value pairs that describe the status of the job execution.
-
#version_number ⇒ Integer
The version of the job execution.
Instance Attribute Details
#status ⇒ String
The status of the job execution. Can be one of: “QUEUED”, “IN_PROGRESS”, “FAILED”, “SUCCESS”, “CANCELED”, “REJECTED”, or “REMOVED”.
208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 208 class JobExecutionState < Struct.new( :status, :status_details, :version_number) SENSITIVE = [] include Aws::Structure end |
#status_details ⇒ Hash<String,String>
A collection of name/value pairs that describe the status of the job execution.
208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 208 class JobExecutionState < Struct.new( :status, :status_details, :version_number) SENSITIVE = [] include Aws::Structure end |
#version_number ⇒ Integer
The version of the job execution. Job execution versions are incremented each time they are updated by a device.
208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-iotjobsdataplane/types.rb', line 208 class JobExecutionState < Struct.new( :status, :status_details, :version_number) SENSITIVE = [] include Aws::Structure end |