Class: Aws::IoT::Types::JobExecutionsRolloutConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass JobExecutionsRolloutConfig data as a hash:

{
  maximum_per_minute: 1,
  exponential_rate: {
    base_rate_per_minute: 1, # required
    increment_factor: 1.0, # required
    rate_increase_criteria: { # required
      number_of_notified_things: 1,
      number_of_succeeded_things: 1,
    },
  },
}

Allows you to create a staged rollout of a job.

Instance Attribute Summary collapse

Instance Attribute Details

#exponential_rateTypes::ExponentialRolloutRate

The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.



5699
5700
5701
5702
5703
# File 'lib/aws-sdk-iot/types.rb', line 5699

class JobExecutionsRolloutConfig < Struct.new(
  :maximum_per_minute,
  :exponential_rate)
  include Aws::Structure
end

#maximum_per_minuteInteger

The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.



5699
5700
5701
5702
5703
# File 'lib/aws-sdk-iot/types.rb', line 5699

class JobExecutionsRolloutConfig < Struct.new(
  :maximum_per_minute,
  :exponential_rate)
  include Aws::Structure
end