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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default JobExecutionsRolloutConfig.BuilderexponentialRate(Consumer<ExponentialRolloutRate.Builder> exponentialRate)The rate of increase for a job rollout.JobExecutionsRolloutConfig.BuilderexponentialRate(ExponentialRolloutRate exponentialRate)The rate of increase for a job rollout.JobExecutionsRolloutConfig.BuildermaximumPerMinute(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
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
-
maximumPerMinute
JobExecutionsRolloutConfig.Builder maximumPerMinute(Integer 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
JobExecutionsRolloutConfig.Builder exponentialRate(ExponentialRolloutRate 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:
exponentialRate(ExponentialRolloutRate)
-
-