Module Values.TableWarmThroughputDescriptionSource

Represents the warm throughput value (in read units per second and write units per second) of the table. Warm throughput is applicable for DynamoDB Standard-IA tables and specifies the minimum provisioned capacity maintained for immediate data access.

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

    Represents the base table's warm throughput value in read units per second.

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

    Represents the base table's warm throughput value in write units per second.

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

    Represents warm throughput value of the base table.

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