Module Values.WarmThroughputSpecificationSource

Specifies the warm throughput settings for a table. Pre-warming a table by specifying warm throughput pre-provisions read and write capacity units to help avoid capacity exceeded exceptions and reduce latency when your table starts receiving traffic. For more information about pre-warming in Amazon Keyspaces, see Pre-warm a table in Amazon Keyspaces in the Amazon Keyspaces Developer Guide.

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

    The number of read capacity units per second to pre-warm the table for read capacity throughput. The minimum value is 1.

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

    The number of write capacity units per second to pre-warm the table for write capacity throughput. The minimum value is 1.

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