Module Values.ProvisionedCapacityDescriptionSource

The description of a connector's provisioned capacity.

Sourcetype nonrec t = {
  1. mcuCount : int option;
    (*

    The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.

    *)
  2. workerCount : int option;
    (*

    The number of workers that are allocated to the connector.

    *)
}
Sourceval make : ?mcuCount:??? -> ?workerCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int ]) 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