Interface AwsJobExecutionsRolloutConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsJobExecutionsRolloutConfig.Builder,AwsJobExecutionsRolloutConfig>,SdkBuilder<AwsJobExecutionsRolloutConfig.Builder,AwsJobExecutionsRolloutConfig>,SdkPojo
- Enclosing class:
- AwsJobExecutionsRolloutConfig
public static interface AwsJobExecutionsRolloutConfig.Builder extends SdkPojo, CopyableBuilder<AwsJobExecutionsRolloutConfig.Builder,AwsJobExecutionsRolloutConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AwsJobExecutionsRolloutConfig.BuilderexponentialRate(Consumer<AwsJobExponentialRolloutRate.Builder> exponentialRate)The rate of increase for a job rollout.AwsJobExecutionsRolloutConfig.BuilderexponentialRate(AwsJobExponentialRolloutRate exponentialRate)The rate of increase for a job rollout.AwsJobExecutionsRolloutConfig.BuildermaximumPerMinute(Integer maximumPerMinute)The maximum number of OTA update job executions started 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
AwsJobExecutionsRolloutConfig.Builder maximumPerMinute(Integer maximumPerMinute)
The maximum number of OTA update job executions started per minute.
- Parameters:
maximumPerMinute- The maximum number of OTA update job executions started per minute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exponentialRate
AwsJobExecutionsRolloutConfig.Builder exponentialRate(AwsJobExponentialRolloutRate exponentialRate)
The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
- Parameters:
exponentialRate- The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exponentialRate
default AwsJobExecutionsRolloutConfig.Builder exponentialRate(Consumer<AwsJobExponentialRolloutRate.Builder> exponentialRate)
The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.
This is a convenience method that creates an instance of theAwsJobExponentialRolloutRate.Builderavoiding the need to create one manually viaAwsJobExponentialRolloutRate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexponentialRate(AwsJobExponentialRolloutRate).- Parameters:
exponentialRate- a consumer that will call methods onAwsJobExponentialRolloutRate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
exponentialRate(AwsJobExponentialRolloutRate)
-
-