Module Values.ScaleConfigSource

Configuration settings for horizontal or vertical scaling operations on Memcached clusters.

Sourcetype nonrec t = {
  1. scalePercentage : IntegerOptional.t option;
    (*

    The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

    *)
  2. scaleIntervalMinutes : IntegerOptional.t option;
    (*

    The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

    *)
}
Sourceval make : ?scalePercentage:??? -> ?scaleIntervalMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerOptional.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