Module Values.HashKeyRangeSource

The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.

Sourcetype nonrec t = {
  1. startingHashKey : HashKey.t option;
    (*

    The starting hash key of the hash key range.

    *)
  2. endingHashKey : HashKey.t option;
    (*

    The ending hash key of the hash key range.

    *)
}
Sourceval make : ?startingHashKey:??? -> ?endingHashKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HashKey.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