Interface CfnVersion.FunctionScalingConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVersion.FunctionScalingConfigProperty.Jsii$Proxy
- Enclosing class:
CfnVersion
@Stability(Stable)
public static interface CfnVersion.FunctionScalingConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration that defines the scaling behavior for a Lambda Managed Instances function, including the minimum and maximum number of execution environments that can be provisioned.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lambda.*;
FunctionScalingConfigProperty functionScalingConfigProperty = FunctionScalingConfigProperty.builder()
.maxExecutionEnvironments(123)
.minExecutionEnvironments(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVersion.FunctionScalingConfigPropertystatic final classAn implementation forCfnVersion.FunctionScalingConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxExecutionEnvironments
The maximum number of execution environments that can be provisioned for the function.- See Also:
-
getMinExecutionEnvironments
The minimum number of execution environments to maintain for the function.- See Also:
-
builder
-