Interface FunctionScalingConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FunctionScalingConfig.Builder,FunctionScalingConfig>,SdkBuilder<FunctionScalingConfig.Builder,FunctionScalingConfig>,SdkPojo
- Enclosing class:
- FunctionScalingConfig
@Mutable @NotThreadSafe public static interface FunctionScalingConfig.Builder extends SdkPojo, CopyableBuilder<FunctionScalingConfig.Builder,FunctionScalingConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctionScalingConfig.BuildermaxExecutionEnvironments(Integer maxExecutionEnvironments)The maximum number of execution environments that can be provisioned for the function.FunctionScalingConfig.BuilderminExecutionEnvironments(Integer minExecutionEnvironments)The minimum number of execution environments to maintain for the function.-
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
-
minExecutionEnvironments
FunctionScalingConfig.Builder minExecutionEnvironments(Integer minExecutionEnvironments)
The minimum number of execution environments to maintain for the function.
- Parameters:
minExecutionEnvironments- The minimum number of execution environments to maintain for the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxExecutionEnvironments
FunctionScalingConfig.Builder maxExecutionEnvironments(Integer maxExecutionEnvironments)
The maximum number of execution environments that can be provisioned for the function.
- Parameters:
maxExecutionEnvironments- The maximum number of execution environments that can be provisioned for the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-