Interface ScalingConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScalingConfiguration.Builder,ScalingConfiguration>,SdkBuilder<ScalingConfiguration.Builder,ScalingConfiguration>,SdkPojo
- Enclosing class:
- ScalingConfiguration
public static interface ScalingConfiguration.Builder extends SdkPojo, CopyableBuilder<ScalingConfiguration.Builder,ScalingConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScalingConfiguration.BuildermaxInstanceCount(Integer maxInstanceCount)The upper bound of the number of instances allowed in the compute fleet.ScalingConfiguration.BuilderminInstanceCount(Integer minInstanceCount)The lower bound of the number of instances allowed in the compute fleet.-
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
-
minInstanceCount
ScalingConfiguration.Builder minInstanceCount(Integer minInstanceCount)
The lower bound of the number of instances allowed in the compute fleet.
- Parameters:
minInstanceCount- The lower bound of the number of instances allowed in the compute fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxInstanceCount
ScalingConfiguration.Builder maxInstanceCount(Integer maxInstanceCount)
The upper bound of the number of instances allowed in the compute fleet.
- Parameters:
maxInstanceCount- The upper bound of the number of instances allowed in the compute fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-