Module Values.FunctionScalingConfigSource

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.

Sourcetype nonrec t = {
  1. minExecutionEnvironments : FunctionScalingConfigExecutionEnvironments.t option;
    (*

    The minimum number of execution environments to maintain for the function.

    *)
  2. maxExecutionEnvironments : FunctionScalingConfigExecutionEnvironments.t option;
    (*

    The maximum number of execution environments that can be provisioned for the function.

    *)
}
Sourceval make : ?minExecutionEnvironments:??? -> ?maxExecutionEnvironments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of FunctionScalingConfigExecutionEnvironments.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t