Class: Aws::IoT::Types::RetryCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::RetryCriteria
- 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
-
#failure_type ⇒ String
The type of job execution failures that can initiate a job retry.
-
#number_of_retries ⇒ Integer
The number of retries allowed for a failure type for the job.
Instance Attribute Details
#failure_type ⇒ String
The type of job execution failures that can initiate a job retry.
14576 14577 14578 14579 14580 14581 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14576 class RetryCriteria < Struct.new( :failure_type, :number_of_retries) SENSITIVE = [] include Aws::Structure end |
#number_of_retries ⇒ Integer
The number of retries allowed for a failure type for the job.
14576 14577 14578 14579 14580 14581 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 14576 class RetryCriteria < Struct.new( :failure_type, :number_of_retries) SENSITIVE = [] include Aws::Structure end |