Module Values.BrokerEBSVolumeInfoSource

Specifies the EBS volume upgrade information. The broker identifier must be set to the keyword ALL. This means the changes apply to all the brokers in the cluster.

Sourcetype nonrec t = {
  1. kafkaBrokerNodeId : string;
    (*

    The ID of the broker to update.

    *)
  2. provisionedThroughput : ProvisionedThroughput.t option;
    (*

    EBS volume provisioned throughput information.

    *)
  3. volumeSizeGB : int option;
    (*

    Size of the EBS volume to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?provisionedThroughput:??? -> ?volumeSizeGB:??? -> kafkaBrokerNodeId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `String of string | `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