Class: Aws::IoT::Types::AwsJobExponentialRolloutRate
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AwsJobExponentialRolloutRate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
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 the job rollout.
-
#increment_factor ⇒ Float
The rate of increase for a job rollout.
-
#rate_increase_criteria ⇒ Types::AwsJobRateIncreaseCriteria
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 the job rollout. This is the initial rate of the rollout.
1290 1291 1292 1293 1294 1295 1296 |
# File 'lib/aws-sdk-iot/types.rb', line 1290 class AwsJobExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |
#increment_factor ⇒ Float
The rate of increase for a job rollout. The number of things notified is multiplied by this factor.
1290 1291 1292 1293 1294 1295 1296 |
# File 'lib/aws-sdk-iot/types.rb', line 1290 class AwsJobExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |
#rate_increase_criteria ⇒ Types::AwsJobRateIncreaseCriteria
The criteria to initiate the increase in 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).
1290 1291 1292 1293 1294 1295 1296 |
# File 'lib/aws-sdk-iot/types.rb', line 1290 class AwsJobExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |