Module Values.WebAppUnitsSource

Contains an integer value that represents the value for number of concurrent connections or the user sessions on your web app.

Sourcetype nonrec t = {
  1. provisioned : WebAppUnitCount.t option;
    (*

    An integer that represents the number of units for your desired number of concurrent connections, or the number of user sessions on your web app at the same time. Each increment allows an additional 250 concurrent sessions: a value of 1 sets the number of concurrent sessions to 250; 2 sets a value of 500, and so on.

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