Class: Aws::IoT::Types::RetryCriteria
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::RetryCriteria
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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.
      13304 13305 13306 13307 13308 13309  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 13304 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.
      13304 13305 13306 13307 13308 13309  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 13304 class RetryCriteria < Struct.new( :failure_type, :number_of_retries) SENSITIVE = [] include Aws::Structure end  |