Class: Aws::IoTJobsDataPlane::Types::JobExecutionState

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotjobsdataplane/lib/aws-sdk-iotjobsdataplane/types.rb

Overview

Contains data about the state of a job execution.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The status of the job execution. Can be one of: "QUEUED", "IN_PROGRESS", "FAILED", "SUCCESS", "CANCELED", "REJECTED", or "REMOVED".

Returns:

  • (String)


208
209
210
211
212
213
214
# File 'gems/aws-sdk-iotjobsdataplane/lib/aws-sdk-iotjobsdataplane/types.rb', line 208

class JobExecutionState < Struct.new(
  :status,
  :status_details,
  :version_number)
  SENSITIVE = []
  include Aws::Structure
end

#status_detailsHash<String,String>

A collection of name/value pairs that describe the status of the job execution.

Returns:

  • (Hash<String,String>)


208
209
210
211
212
213
214
# File 'gems/aws-sdk-iotjobsdataplane/lib/aws-sdk-iotjobsdataplane/types.rb', line 208

class JobExecutionState < Struct.new(
  :status,
  :status_details,
  :version_number)
  SENSITIVE = []
  include Aws::Structure
end

#version_numberInteger

The version of the job execution. Job execution versions are incremented each time they are updated by a device.

Returns:

  • (Integer)


208
209
210
211
212
213
214
# File 'gems/aws-sdk-iotjobsdataplane/lib/aws-sdk-iotjobsdataplane/types.rb', line 208

class JobExecutionState < Struct.new(
  :status,
  :status_details,
  :version_number)
  SENSITIVE = []
  include Aws::Structure
end