Module Values.CapacitySource

Represents the amount of provisioned throughput capacity consumed on a table or an index.

Sourcetype nonrec t = {
  1. readCapacityUnits : ConsumedCapacityUnits.t option;
    (*

    The total number of read capacity units consumed on a table or an index.

    *)
  2. writeCapacityUnits : ConsumedCapacityUnits.t option;
    (*

    The total number of write capacity units consumed on a table or an index.

    *)
  3. capacityUnits : ConsumedCapacityUnits.t option;
    (*

    The total number of capacity units consumed on a table or an index.

    *)
}
Sourceval make : ?readCapacityUnits:??? -> ?writeCapacityUnits:??? -> ?capacityUnits:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of ConsumedCapacityUnits.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