Module Values.ProvisionedThroughputSource

Contains information about provisioned throughput for EBS storage volumes attached to kafka broker nodes.

Sourcetype nonrec t = {
  1. enabled : bool option;
    (*

    Provisioned throughput is enabled or not.

    *)
  2. volumeThroughput : int option;
    (*

    Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.

    *)
}
Sourceval make : ?enabled:??? -> ?volumeThroughput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `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