Module Values.SequenceNumberRangeSource

The range of possible sequence numbers for the shard.

Sourcetype nonrec t = {
  1. startingSequenceNumber : SequenceNumber.t option;
    (*

    The starting sequence number for the range.

    *)
  2. endingSequenceNumber : SequenceNumber.t option;
    (*

    The ending sequence number for the range. Shards that are in the OPEN state have an ending sequence number of null.

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