Class: Aws::GreengrassV2::Types::IoTJobRateIncreaseCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::IoTJobRateIncreaseCriteria
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about criteria to meet before a job increases its rollout rate. Specify either ‘numberOfNotifiedThings` or `numberOfSucceededThings`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#number_of_notified_things ⇒ Integer
The number of devices to receive the job notification before the rollout rate increases.
-
#number_of_succeeded_things ⇒ Integer
The number of devices to successfully run the configuration job before the rollout rate increases.
Instance Attribute Details
#number_of_notified_things ⇒ Integer
The number of devices to receive the job notification before the rollout rate increases.
2018 2019 2020 2021 2022 2023 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2018 class IoTJobRateIncreaseCriteria < Struct.new( :number_of_notified_things, :number_of_succeeded_things) SENSITIVE = [] include Aws::Structure end |
#number_of_succeeded_things ⇒ Integer
The number of devices to successfully run the configuration job before the rollout rate increases.
2018 2019 2020 2021 2022 2023 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2018 class IoTJobRateIncreaseCriteria < Struct.new( :number_of_notified_things, :number_of_succeeded_things) SENSITIVE = [] include Aws::Structure end |