Module Values.EBSStorageInfoSource

Contains information about the EBS storage volumes attached to Apache Kafka broker nodes.

Sourcetype nonrec t = {
  1. provisionedThroughput : ProvisionedThroughput.t option;
    (*

    EBS volume provisioned throughput information.

    *)
  2. volumeSize : int option;
    (*

    The size in GiB of the EBS volume for the data drive on each broker node.

    *)
}
Sourceval make : ?provisionedThroughput:??? -> ?volumeSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `Structure of (string * [> `Boolean of bool | `Integer of int ]) list ]) 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