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: