Interface LinearConfiguration.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<LinearConfiguration.Builder,,LinearConfiguration> SdkBuilder<LinearConfiguration.Builder,,LinearConfiguration> SdkPojo
- Enclosing class:
LinearConfiguration
@Mutable
@NotThreadSafe
public static interface LinearConfiguration.Builder
extends SdkPojo, CopyableBuilder<LinearConfiguration.Builder,LinearConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionstepBakeTimeInMinutes(Integer stepBakeTimeInMinutes) The amount of time in minutes to wait between each traffic shifting step during a linear deployment.stepPercent(Double stepPercent) The percentage of production traffic to shift in each step during a linear deployment.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, sdkFieldNameToField, sdkFields
-
Method Details
-
stepPercent
The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
- Parameters:
stepPercent- The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepBakeTimeInMinutes
The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
- Parameters:
stepBakeTimeInMinutes- The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-