Module Values.MergeShardsInputSource

Represents the input for MergeShards.

Sourcetype nonrec t = {
  1. streamName : StreamName.t option;
    (*

    The name of the stream for the merge.

    *)
  2. shardToMerge : ShardId.t;
    (*

    The shard ID of the shard to combine with the adjacent shard for the merge.

    *)
  3. adjacentShardToMerge : ShardId.t;
    (*

    The shard ID of the adjacent shard for the merge.

    *)
  4. streamARN : StreamARN.t option;
    (*

    The ARN of the stream.

    *)
  5. streamId : StreamId.t option;
    (*

    Not Implemented. Reserved for future use.

    *)
}
Sourceval context_ : string
Sourceval make : ?streamName:??? -> ?streamARN:??? -> ?streamId:??? -> shardToMerge:ShardId.t -> adjacentShardToMerge:ShardId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StreamName.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