Class: Aws::IoT::Types::CancelJobRequest

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#commentString

An optional comment string describing why the job was canceled.

Returns:

  • (String)


1713
1714
1715
1716
1717
1718
1719
1720
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1713

class CancelJobRequest < Struct.new(
  :job_id,
  :reason_code,
  :comment,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#forceBoolean

(Optional) If true job executions with status "IN_PROGRESS" and "QUEUED" are canceled, otherwise only job executions with status "QUEUED" are canceled. The default is false.

Canceling a job which is "IN_PROGRESS", will cause a device which is executing the job to be unable to update the job execution status. Use caution and ensure that each device executing a job which is canceled is able to recover to a valid state.

Returns:

  • (Boolean)


1713
1714
1715
1716
1717
1718
1719
1720
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1713

class CancelJobRequest < Struct.new(
  :job_id,
  :reason_code,
  :comment,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#job_idString

The unique identifier you assigned to this job when it was created.

Returns:

  • (String)


1713
1714
1715
1716
1717
1718
1719
1720
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1713

class CancelJobRequest < Struct.new(
  :job_id,
  :reason_code,
  :comment,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#reason_codeString

(Optional)A reason code string that explains why the job was canceled.

Returns:

  • (String)


1713
1714
1715
1716
1717
1718
1719
1720
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1713

class CancelJobRequest < Struct.new(
  :job_id,
  :reason_code,
  :comment,
  :force)
  SENSITIVE = []
  include Aws::Structure
end