Class: Aws::GreengrassV2::Types::IoTJobExecutionsRolloutConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GreengrassV2::Types::IoTJobExecutionsRolloutConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-greengrassv2/types.rb
 
Overview
Contains information about the rollout configuration for a job. This configuration defines the rate at which the job deploys a configuration to a fleet of target devices.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #exponential_rate  ⇒ Types::IoTJobExponentialRolloutRate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The exponential rate to increase the job rollout rate.
 - 
  
    
      #maximum_per_minute  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of devices that receive a pending job notification, per minute.
 
Instance Attribute Details
#exponential_rate ⇒ Types::IoTJobExponentialRolloutRate
The exponential rate to increase the job rollout rate.
      1965 1966 1967 1968 1969 1970  | 
    
      # File 'lib/aws-sdk-greengrassv2/types.rb', line 1965 class IoTJobExecutionsRolloutConfig < Struct.new( :exponential_rate, :maximum_per_minute) SENSITIVE = [] include Aws::Structure end  | 
  
#maximum_per_minute ⇒ Integer
The maximum number of devices that receive a pending job notification, per minute.
      1965 1966 1967 1968 1969 1970  | 
    
      # File 'lib/aws-sdk-greengrassv2/types.rb', line 1965 class IoTJobExecutionsRolloutConfig < Struct.new( :exponential_rate, :maximum_per_minute) SENSITIVE = [] include Aws::Structure end  |