Class: Aws::IoT::Types::ExponentialRolloutRate

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

Overview

Allows you to create an exponential rate of rollout for a job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#base_rate_per_minuteInteger

The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. This parameter allows you to define the initial rate of rollout.

Returns:

  • (Integer)


7085
7086
7087
7088
7089
7090
7091
# File 'lib/aws-sdk-iot/types.rb', line 7085

class ExponentialRolloutRate < Struct.new(
  :base_rate_per_minute,
  :increment_factor,
  :rate_increase_criteria)
  SENSITIVE = []
  include Aws::Structure
end

#increment_factorFloat

The exponential factor to increase the rate of rollout for a job.

Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

Returns:

  • (Float)


7085
7086
7087
7088
7089
7090
7091
# File 'lib/aws-sdk-iot/types.rb', line 7085

class ExponentialRolloutRate < Struct.new(
  :base_rate_per_minute,
  :increment_factor,
  :rate_increase_criteria)
  SENSITIVE = []
  include Aws::Structure
end

#rate_increase_criteriaTypes::RateIncreaseCriteria

The criteria to initiate the increase in rate of rollout for a job.



7085
7086
7087
7088
7089
7090
7091
# File 'lib/aws-sdk-iot/types.rb', line 7085

class ExponentialRolloutRate < Struct.new(
  :base_rate_per_minute,
  :increment_factor,
  :rate_increase_criteria)
  SENSITIVE = []
  include Aws::Structure
end