Class: Aws::IoT::Types::ExponentialRolloutRate
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ExponentialRolloutRate
- 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
-
#base_rate_per_minute ⇒ Integer
The minimum number of things that will be notified of a pending job, per minute at the start of job rollout.
-
#increment_factor ⇒ Float
The exponential factor to increase the rate of rollout for a job.
-
#rate_increase_criteria ⇒ Types::RateIncreaseCriteria
The criteria to initiate the increase in rate of rollout for a job.
Instance Attribute Details
#base_rate_per_minute ⇒ Integer
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.
7382 7383 7384 7385 7386 7387 7388 |
# File 'lib/aws-sdk-iot/types.rb', line 7382 class ExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |
#increment_factor ⇒ Float
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).
7382 7383 7384 7385 7386 7387 7388 |
# File 'lib/aws-sdk-iot/types.rb', line 7382 class ExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |
#rate_increase_criteria ⇒ Types::RateIncreaseCriteria
The criteria to initiate the increase in rate of rollout for a job.
7382 7383 7384 7385 7386 7387 7388 |
# File 'lib/aws-sdk-iot/types.rb', line 7382 class ExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |