Interface JobExecutionsRolloutConfig.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<JobExecutionsRolloutConfig.Builder,,JobExecutionsRolloutConfig> SdkBuilder<JobExecutionsRolloutConfig.Builder,,JobExecutionsRolloutConfig> SdkPojo
- Enclosing class:
 JobExecutionsRolloutConfig
public static interface JobExecutionsRolloutConfig.Builder
extends SdkPojo, CopyableBuilder<JobExecutionsRolloutConfig.Builder,JobExecutionsRolloutConfig> 
- 
Method Summary
Modifier and TypeMethodDescriptionexponentialRate(Consumer<ExponentialRolloutRate.Builder> exponentialRate) The rate of increase for a job rollout.exponentialRate(ExponentialRolloutRate exponentialRate) The rate of increase for a job rollout.maximumPerMinute(Integer maximumPerMinute) The maximum number of things that will be notified of a pending job, per minute.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, sdkFields 
- 
Method Details
- 
maximumPerMinute
The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.
- Parameters:
 maximumPerMinute- The maximum number of things that will be notified of a pending job, per minute. This parameter allows you to create a staged rollout.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
exponentialRate
The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.
- Parameters:
 exponentialRate- The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
exponentialRate
default JobExecutionsRolloutConfig.Builder exponentialRate(Consumer<ExponentialRolloutRate.Builder> exponentialRate) The rate of increase for a job rollout. This parameter allows you to define an exponential rate for a job rollout.
This is a convenience method that creates an instance of theExponentialRolloutRate.Builderavoiding the need to create one manually viaExponentialRolloutRate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexponentialRate(ExponentialRolloutRate).- Parameters:
 exponentialRate- a consumer that will call methods onExponentialRolloutRate.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -