Module Values.WarmThroughputObjectSource

Represents the warm throughput configuration on the stream. This is only present for On-Demand Kinesis Data Streams in accounts that have MinimumThroughputBillingCommitment enabled.

Sourcetype nonrec t = {
  1. targetMiBps : NaturalIntegerObject.t option;
    (*

    The target warm throughput value on the stream. This indicates that the stream is currently scaling towards this target value.

    *)
  2. currentMiBps : NaturalIntegerObject.t option;
    (*

    The current warm throughput value on the stream. This is the write throughput in MiBps that the stream is currently scaled to handle.

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