Values.PutFunctionScalingConfigRequestSourceSets the scaling configuration for a Lambda Managed Instances function. The scaling configuration defines the minimum and maximum number of execution environments that can be provisioned for the function, allowing you to control scaling behavior and resource allocation.
type nonrec t = {functionName : UnqualifiedFunctionName.t;The name or ARN of the Lambda function.
*)qualifier : PublishedFunctionQualifier.t;Specify a version or alias to set the scaling configuration for a published version of the function.
*)functionScalingConfig : FunctionScalingConfig.t option;The scaling configuration to apply to the function, including minimum and maximum execution environment limits.
*)}val make :
?functionScalingConfig:??? ->
functionName:UnqualifiedFunctionName.t ->
qualifier:PublishedFunctionQualifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of UnqualifiedFunctionName.t
| `Structure of
(string
* [> `Integer of FunctionScalingConfigExecutionEnvironments.t ])
list ])
list ]