Interface IoTJobExponentialRolloutRate.Builder

All Superinterfaces:
Buildable, CopyableBuilder<IoTJobExponentialRolloutRate.Builder,IoTJobExponentialRolloutRate>, SdkBuilder<IoTJobExponentialRolloutRate.Builder,IoTJobExponentialRolloutRate>, SdkPojo
Enclosing class:
IoTJobExponentialRolloutRate

public static interface IoTJobExponentialRolloutRate.Builder extends SdkPojo, CopyableBuilder<IoTJobExponentialRolloutRate.Builder,IoTJobExponentialRolloutRate>
  • Method Details

    • baseRatePerMinute

      IoTJobExponentialRolloutRate.Builder baseRatePerMinute(Integer baseRatePerMinute)

      The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.

      Parameters:
      baseRatePerMinute - The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • incrementFactor

      IoTJobExponentialRolloutRate.Builder incrementFactor(Double incrementFactor)

      The exponential factor to increase the rollout rate for the job.

      This parameter supports up to one digit after the decimal (for example, you can specify 1.5, but not 1.55).

      Parameters:
      incrementFactor - The exponential factor to increase the rollout rate for the job.

      This parameter supports up to one digit after the decimal (for example, you can specify 1.5, but not 1.55).

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • rateIncreaseCriteria

      IoTJobExponentialRolloutRate.Builder rateIncreaseCriteria(IoTJobRateIncreaseCriteria rateIncreaseCriteria)

      The criteria to increase the rollout rate for the job.

      Parameters:
      rateIncreaseCriteria - The criteria to increase the rollout rate for the job.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • rateIncreaseCriteria

      default IoTJobExponentialRolloutRate.Builder rateIncreaseCriteria(Consumer<IoTJobRateIncreaseCriteria.Builder> rateIncreaseCriteria)

      The criteria to increase the rollout rate for the job.

      This is a convenience method that creates an instance of the IoTJobRateIncreaseCriteria.Builder avoiding the need to create one manually via IoTJobRateIncreaseCriteria.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to rateIncreaseCriteria(IoTJobRateIncreaseCriteria).

      Parameters:
      rateIncreaseCriteria - a consumer that will call methods on IoTJobRateIncreaseCriteria.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: