Interface AwsJobExponentialRolloutRate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsJobExponentialRolloutRate.Builder,AwsJobExponentialRolloutRate>,SdkBuilder<AwsJobExponentialRolloutRate.Builder,AwsJobExponentialRolloutRate>,SdkPojo
- Enclosing class:
- AwsJobExponentialRolloutRate
public static interface AwsJobExponentialRolloutRate.Builder extends SdkPojo, CopyableBuilder<AwsJobExponentialRolloutRate.Builder,AwsJobExponentialRolloutRate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AwsJobExponentialRolloutRate.BuilderbaseRatePerMinute(Integer baseRatePerMinute)The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout.AwsJobExponentialRolloutRate.BuilderincrementFactor(Double incrementFactor)The rate of increase for a job rollout.default AwsJobExponentialRolloutRate.BuilderrateIncreaseCriteria(Consumer<AwsJobRateIncreaseCriteria.Builder> rateIncreaseCriteria)The criteria to initiate the increase in rate of rollout for a job.AwsJobExponentialRolloutRate.BuilderrateIncreaseCriteria(AwsJobRateIncreaseCriteria 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
AwsJobExponentialRolloutRate.Builder baseRatePerMinute(Integer baseRatePerMinute)
The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.
- Parameters:
baseRatePerMinute- The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
incrementFactor
AwsJobExponentialRolloutRate.Builder incrementFactor(Double incrementFactor)
The rate of increase for a job rollout. The number of things notified is multiplied by this factor.
- Parameters:
incrementFactor- The rate of increase for a job rollout. The number of things notified is multiplied by this factor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rateIncreaseCriteria
AwsJobExponentialRolloutRate.Builder rateIncreaseCriteria(AwsJobRateIncreaseCriteria rateIncreaseCriteria)
The criteria to initiate the increase in 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:
rateIncreaseCriteria- The criteria to initiate the increase in 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
default AwsJobExponentialRolloutRate.Builder rateIncreaseCriteria(Consumer<AwsJobRateIncreaseCriteria.Builder> rateIncreaseCriteria)
The criteria to initiate the increase in 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).
This is a convenience method that creates an instance of theAwsJobRateIncreaseCriteria.Builderavoiding the need to create one manually viaAwsJobRateIncreaseCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torateIncreaseCriteria(AwsJobRateIncreaseCriteria).- Parameters:
rateIncreaseCriteria- a consumer that will call methods onAwsJobRateIncreaseCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
rateIncreaseCriteria(AwsJobRateIncreaseCriteria)
-
-