Values.FunctionScalingConfigSourceConfiguration that defines the scaling behavior for a Lambda Managed Instances function, including the minimum and maximum number of execution environments that can be provisioned.
type nonrec t = {minExecutionEnvironments : FunctionScalingConfigExecutionEnvironments.t option;The minimum number of execution environments to maintain for the function.
*)maxExecutionEnvironments : FunctionScalingConfigExecutionEnvironments.t option;The maximum number of execution environments that can be provisioned for the function.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Integer of FunctionScalingConfigExecutionEnvironments.t ])
list ]