Interface ExponentialRolloutRate.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ExponentialRolloutRate.Builder,,ExponentialRolloutRate> SdkBuilder<ExponentialRolloutRate.Builder,,ExponentialRolloutRate> SdkPojo
- Enclosing class:
ExponentialRolloutRate
@Mutable
@NotThreadSafe
public static interface ExponentialRolloutRate.Builder
extends SdkPojo, CopyableBuilder<ExponentialRolloutRate.Builder,ExponentialRolloutRate>
-
Method Summary
Modifier and TypeMethodDescriptionbaseRatePerMinute(Integer baseRatePerMinute) The base rate per minute for the rollout of an over-the-air (OTA) task.incrementFactor(Double incrementFactor) The incremental factor for increasing the rollout rate of an over-the-air (OTA) task.default ExponentialRolloutRate.BuilderrateIncreaseCriteria(Consumer<RolloutRateIncreaseCriteria.Builder> rateIncreaseCriteria) The criteria for increasing the rollout rate of an over-the-air (OTA) task.rateIncreaseCriteria(RolloutRateIncreaseCriteria rateIncreaseCriteria) The criteria for increasing the rollout rate of an over-the-air (OTA) task.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
baseRatePerMinute
The base rate per minute for the rollout of an over-the-air (OTA) task.
- Parameters:
baseRatePerMinute- The base rate per minute for the rollout of an over-the-air (OTA) task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
incrementFactor
The incremental factor for increasing the rollout rate of an over-the-air (OTA) task.
- Parameters:
incrementFactor- The incremental factor for increasing the rollout rate of an over-the-air (OTA) task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rateIncreaseCriteria
ExponentialRolloutRate.Builder rateIncreaseCriteria(RolloutRateIncreaseCriteria rateIncreaseCriteria) The criteria for increasing the rollout rate of an over-the-air (OTA) task.
- Parameters:
rateIncreaseCriteria- The criteria for increasing the rollout rate of an over-the-air (OTA) task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rateIncreaseCriteria
default ExponentialRolloutRate.Builder rateIncreaseCriteria(Consumer<RolloutRateIncreaseCriteria.Builder> rateIncreaseCriteria) The criteria for increasing the rollout rate of an over-the-air (OTA) task.
This is a convenience method that creates an instance of theRolloutRateIncreaseCriteria.Builderavoiding the need to create one manually viaRolloutRateIncreaseCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torateIncreaseCriteria(RolloutRateIncreaseCriteria).- Parameters:
rateIncreaseCriteria- a consumer that will call methods onRolloutRateIncreaseCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-