Class: Aws::IoT::Types::RateIncreaseCriteria

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass RateIncreaseCriteria data as a hash:

{
  number_of_notified_things: 1,
  number_of_succeeded_things: 1,
}

Allows you to define a criteria to initiate the increase in rate of rollout for a job.

Instance Attribute Summary collapse

Instance Attribute Details

#number_of_notified_thingsInteger

The threshold for number of notified things that will initiate the increase in rate of rollout.

Returns:

  • (Integer)


8284
8285
8286
8287
8288
# File 'lib/aws-sdk-iot/types.rb', line 8284

class RateIncreaseCriteria < Struct.new(
  :number_of_notified_things,
  :number_of_succeeded_things)
  include Aws::Structure
end

#number_of_succeeded_thingsInteger

The threshold for number of succeeded things that will initiate the increase in rate of rollout.

Returns:

  • (Integer)


8284
8285
8286
8287
8288
# File 'lib/aws-sdk-iot/types.rb', line 8284

class RateIncreaseCriteria < Struct.new(
  :number_of_notified_things,
  :number_of_succeeded_things)
  include Aws::Structure
end