Module Values.WarmThroughputSource

Provides visibility into the number of read and write operations your table or secondary index can instantaneously support. The settings can be modified using the UpdateTable operation to meet the throughput requirements of an upcoming peak event.

Sourcetype nonrec t = {
  1. readUnitsPerSecond : LongObject.t option;
    (*

    Represents the number of read operations your base table can instantaneously support.

    *)
  2. writeUnitsPerSecond : LongObject.t option;
    (*

    Represents the number of write operations your base table can instantaneously support.

    *)
}
Sourceval make : ?readUnitsPerSecond:??? -> ?writeUnitsPerSecond:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of LongObject.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