Class: Aws::GreengrassV2::Types::IoTJobExecutionsRolloutConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::IoTJobExecutionsRolloutConfig
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Note:
When making an API call, you may pass IoTJobExecutionsRolloutConfig data as a hash:
{
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,
},
},
maximum_per_minute: 1,
}
Contains information about the rollout configuration for a job. This configuration defines the rate at which the job deploys a configuration to a fleet of target devices.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exponential_rate ⇒ Types::IoTJobExponentialRolloutRate
The exponential rate to increase the job rollout rate.
-
#maximum_per_minute ⇒ Integer
The maximum number of devices that receive a pending job notification, per minute.
Instance Attribute Details
#exponential_rate ⇒ Types::IoTJobExponentialRolloutRate
The exponential rate to increase the job rollout rate.
2241 2242 2243 2244 2245 2246 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2241 class IoTJobExecutionsRolloutConfig < Struct.new( :exponential_rate, :maximum_per_minute) SENSITIVE = [] include Aws::Structure end |
#maximum_per_minute ⇒ Integer
The maximum number of devices that receive a pending job notification, per minute.
2241 2242 2243 2244 2245 2246 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2241 class IoTJobExecutionsRolloutConfig < Struct.new( :exponential_rate, :maximum_per_minute) SENSITIVE = [] include Aws::Structure end |