Module Values.ShardSource

Represents a uniquely identified group of change records within a change data capture stream for Amazon Keyspaces.

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

    A unique identifier for this shard within the stream.

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

    The range of sequence numbers contained within this shard.

    *)
  3. parentShardIds : ShardIdList.t option;
    (*

    The identifiers of parent shards that this shard evolved from, if this shard was created through resharding.

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