Class: Aws::IoT::Types::AwsJobExecutionsRolloutConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::AwsJobExecutionsRolloutConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Configuration for the rollout of OTA updates.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #exponential_rate  ⇒ Types::AwsJobExponentialRolloutRate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The rate of increase for a job rollout.
 - 
  
    
      #maximum_per_minute  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of OTA update job executions started per minute.
 
Instance Attribute Details
#exponential_rate ⇒ Types::AwsJobExponentialRolloutRate
The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
      1185 1186 1187 1188 1189 1190  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1185 class AwsJobExecutionsRolloutConfig < Struct.new( :maximum_per_minute, :exponential_rate) SENSITIVE = [] include Aws::Structure end  | 
  
#maximum_per_minute ⇒ Integer
The maximum number of OTA update job executions started per minute.
      1185 1186 1187 1188 1189 1190  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 1185 class AwsJobExecutionsRolloutConfig < Struct.new( :maximum_per_minute, :exponential_rate) SENSITIVE = [] include Aws::Structure end  |