Class: Aws::GreengrassV2::Types::IoTJobExponentialRolloutRate
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::IoTJobExponentialRolloutRate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about an exponential rollout rate for a configuration deployment job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_rate_per_minute ⇒ Integer
The minimum number of devices that receive a pending job notification, per minute, when the job starts.
-
#increment_factor ⇒ Float
The exponential factor to increase the rollout rate for the job.
-
#rate_increase_criteria ⇒ Types::IoTJobRateIncreaseCriteria
The criteria to increase the rollout rate for the job.
Instance Attribute Details
#base_rate_per_minute ⇒ Integer
The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.
1994 1995 1996 1997 1998 1999 2000 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 1994 class IoTJobExponentialRolloutRate < 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 rollout rate for the job.
This parameter supports up to one digit after the decimal (for example, you can specify ‘1.5`, but not `1.55`).
1994 1995 1996 1997 1998 1999 2000 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 1994 class IoTJobExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |
#rate_increase_criteria ⇒ Types::IoTJobRateIncreaseCriteria
The criteria to increase the rollout rate for the job.
1994 1995 1996 1997 1998 1999 2000 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 1994 class IoTJobExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |