Class: Aws::IoT::Types::AwsJobRateIncreaseCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AwsJobRateIncreaseCriteria
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass AwsJobRateIncreaseCriteria data as a hash:
{
number_of_notified_things: 1,
number_of_succeeded_things: 1,
}
The criteria to initiate the increase in rate of rollout for a job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#number_of_notified_things ⇒ Integer
When this number of things have been notified, it will initiate an increase in the rollout rate.
-
#number_of_succeeded_things ⇒ Integer
When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.
Instance Attribute Details
#number_of_notified_things ⇒ Integer
When this number of things have been notified, it will initiate an increase in the rollout rate.
1688 1689 1690 1691 1692 1693 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1688 class AwsJobRateIncreaseCriteria < Struct.new( :number_of_notified_things, :number_of_succeeded_things) SENSITIVE = [] include Aws::Structure end |
#number_of_succeeded_things ⇒ Integer
When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.
1688 1689 1690 1691 1692 1693 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 1688 class AwsJobRateIncreaseCriteria < Struct.new( :number_of_notified_things, :number_of_succeeded_things) SENSITIVE = [] include Aws::Structure end |