Class: Aws::IoT::Types::AwsJobExecutionsRolloutConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AwsJobExecutionsRolloutConfig
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass AwsJobExecutionsRolloutConfig data as a hash:
{
maximum_per_minute: 1,
exponential_rate: {
base_rate_per_minute: 1, # required
increment_factor: 1.0, # required
rate_increase_criteria: { # required
number_of_notified_things: 1,
number_of_succeeded_things: 1,
},
},
}
Configuration for the rollout of OTA updates.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exponential_rate ⇒ Types::AwsJobExponentialRolloutRate
The rate of increase for a job rollout.
-
#maximum_per_minute ⇒ Integer
The maximum number of OTA update job executions started per minute.
Instance Attribute Details
#exponential_rate ⇒ Types::AwsJobExponentialRolloutRate
The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1598 class AwsJobExecutionsRolloutConfig < Struct.new( :maximum_per_minute, :exponential_rate) SENSITIVE = [] include Aws::Structure end |
#maximum_per_minute ⇒ Integer
The maximum number of OTA update job executions started per minute.
1598 1599 1600 1601 1602 1603 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1598 class AwsJobExecutionsRolloutConfig < Struct.new( :maximum_per_minute, :exponential_rate) SENSITIVE = [] include Aws::Structure end |