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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LinearConfiguration.BuilderstepBakeTimeInMinutes(Integer stepBakeTimeInMinutes)The amount of time in minutes to wait between each traffic shifting step during a linear deployment.LinearConfiguration.BuilderstepPercent(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
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
stepPercent
LinearConfiguration.Builder stepPercent(Double 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
LinearConfiguration.Builder stepBakeTimeInMinutes(Integer 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.
-
-