Module Values.ShardSource

A uniquely identified group of stream records within a stream.

Sourcetype nonrec t = {
  1. shardId : ShardId.t option;
    (*

    The system-generated identifier for this shard.

    *)
  2. sequenceNumberRange : SequenceNumberRange.t option;
    (*

    The range of possible sequence numbers for the shard.

    *)
  3. parentShardId : ShardId.t option;
    (*

    The shard ID of the current shard's parent.

    *)
}
Sourceval make : ?shardId:??? -> ?sequenceNumberRange:??? -> ?parentShardId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ShardId.t | `Structure of (string * [> `String of SequenceNumber.t ]) list ]) 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