Module Values.WarmThroughputSpecificationSummarySource

Contains the current warm throughput settings for a table, including the configured capacity units and the current status of the warm throughput configuration.

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

    The number of read capacity units per second currently configured for warm throughput.

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

    The number of write capacity units per second currently configured for warm throughput.

    *)
  3. status : WarmThroughputStatus.t option;
    (*

    The current status of the warm throughput configuration. Valid values are AVAILABLE when the configuration is active, and UPDATING when changes are being applied.

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