Module Values.ShardSource

A uniquely identified group of data records in a Kinesis data stream.

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

    The unique identifier of the shard within the stream.

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

    The shard ID of the shard's parent.

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

    The shard ID of the shard adjacent to the shard's parent.

    *)
  4. hashKeyRange : HashKeyRange.t option;
    (*

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

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

    The range of possible sequence numbers for the shard.

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