Interface ScalingConfigurationRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScalingConfigurationRequest.Builder,ScalingConfigurationRequest>,SdkBuilder<ScalingConfigurationRequest.Builder,ScalingConfigurationRequest>,SdkPojo
- Enclosing class:
- ScalingConfigurationRequest
public static interface ScalingConfigurationRequest.Builder extends SdkPojo, CopyableBuilder<ScalingConfigurationRequest.Builder,ScalingConfigurationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScalingConfigurationRequest.BuildermaxInstanceCount(Integer maxInstanceCount)The upper bound of the number of instances allowed in the compute fleet.ScalingConfigurationRequest.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
ScalingConfigurationRequest.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
ScalingConfigurationRequest.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.
-
-