Class: Aws::IoT::Types::RetryCriteria

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

Overview

The criteria that determines how many retries are allowed for each failure type for a job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#failure_typeString

The type of job execution failures that can initiate a job retry.

Returns:

  • (String)


13304
13305
13306
13307
13308
13309
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13304

class RetryCriteria < Struct.new(
  :failure_type,
  :number_of_retries)
  SENSITIVE = []
  include Aws::Structure
end

#number_of_retriesInteger

The number of retries allowed for a failure type for the job.

Returns:

  • (Integer)


13304
13305
13306
13307
13308
13309
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 13304

class RetryCriteria < Struct.new(
  :failure_type,
  :number_of_retries)
  SENSITIVE = []
  include Aws::Structure
end