Class: Aws::GreengrassV2::Types::IoTJobExponentialRolloutRate
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::IoTJobExponentialRolloutRate
- Defined in:
- gems/aws-sdk-greengrassv2/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.
2022 2023 2024 2025 2026 2027 2028 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2022 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
).
2022 2023 2024 2025 2026 2027 2028 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2022 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.
2022 2023 2024 2025 2026 2027 2028 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2022 class IoTJobExponentialRolloutRate < Struct.new( :base_rate_per_minute, :increment_factor, :rate_increase_criteria) SENSITIVE = [] include Aws::Structure end |