Class: Aws::IoT::Types::AwsJobRateIncreaseCriteria
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::AwsJobRateIncreaseCriteria
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
The criteria to initiate the increase in rate of rollout for a job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #number_of_notified_things  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When this number of things have been notified, it will initiate an increase in the rollout rate.
 - 
  
    
      #number_of_succeeded_things  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.
 
Instance Attribute Details
#number_of_notified_things ⇒ Integer
When this number of things have been notified, it will initiate an increase in the rollout rate.
      1248 1249 1250 1251 1252 1253  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1248 class AwsJobRateIncreaseCriteria < Struct.new( :number_of_notified_things, :number_of_succeeded_things) SENSITIVE = [] include Aws::Structure end  | 
  
#number_of_succeeded_things ⇒ Integer
When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.
      1248 1249 1250 1251 1252 1253  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1248 class AwsJobRateIncreaseCriteria < Struct.new( :number_of_notified_things, :number_of_succeeded_things) SENSITIVE = [] include Aws::Structure end  |