Interface ExponentialRolloutRate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExponentialRolloutRate.Builder,ExponentialRolloutRate>,SdkBuilder<ExponentialRolloutRate.Builder,ExponentialRolloutRate>,SdkPojo
- Enclosing class:
- ExponentialRolloutRate
public static interface ExponentialRolloutRate.Builder extends SdkPojo, CopyableBuilder<ExponentialRolloutRate.Builder,ExponentialRolloutRate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ExponentialRolloutRate.BuilderbaseRatePerMinute(Integer baseRatePerMinute)The minimum number of things that will be notified of a pending job, per minute at the start of job rollout.ExponentialRolloutRate.BuilderincrementFactor(Double incrementFactor)The exponential factor to increase the rate of rollout for a job.default ExponentialRolloutRate.BuilderrateIncreaseCriteria(Consumer<RateIncreaseCriteria.Builder> rateIncreaseCriteria)The criteria to initiate the increase in rate of rollout for a job.ExponentialRolloutRate.BuilderrateIncreaseCriteria(RateIncreaseCriteria rateIncreaseCriteria)The criteria to initiate the increase in rate of rollout for a job.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
baseRatePerMinute
ExponentialRolloutRate.Builder baseRatePerMinute(Integer baseRatePerMinute)
The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. This parameter allows you to define the initial rate of rollout.
- Parameters:
baseRatePerMinute- The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. This parameter allows you to define the initial rate of rollout.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
incrementFactor
ExponentialRolloutRate.Builder incrementFactor(Double incrementFactor)
The exponential factor to increase the rate of rollout for a job.
Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).
- Parameters:
incrementFactor- The exponential factor to increase the rate of rollout for a job.Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rateIncreaseCriteria
ExponentialRolloutRate.Builder rateIncreaseCriteria(RateIncreaseCriteria rateIncreaseCriteria)
The criteria to initiate the increase in rate of rollout for a job.
- Parameters:
rateIncreaseCriteria- The criteria to initiate the increase in rate of rollout for a job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rateIncreaseCriteria
default ExponentialRolloutRate.Builder rateIncreaseCriteria(Consumer<RateIncreaseCriteria.Builder> rateIncreaseCriteria)
The criteria to initiate the increase in rate of rollout for a job.
This is a convenience method that creates an instance of theRateIncreaseCriteria.Builderavoiding the need to create one manually viaRateIncreaseCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torateIncreaseCriteria(RateIncreaseCriteria).- Parameters:
rateIncreaseCriteria- a consumer that will call methods onRateIncreaseCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
rateIncreaseCriteria(RateIncreaseCriteria)
-
-