Module Values_2.SegmentSource

Defines a non-overlapping region of a table's partitions, allowing multiple requests to be run in parallel.

Sourcetype nonrec t = {
  1. segmentNumber : Values_1.NonNegativeInteger.t;
    (*

    The zero-based index number of the segment. For example, if the total number of segments is 4, SegmentNumber values range from 0 through 3.

    *)
  2. totalSegments : TotalSegmentsInteger.t;
    (*

    The total number of segments.

    *)
}
Sourceval context_ : string
Sourceval make : segmentNumber:Values_1.NonNegativeInteger.t -> totalSegments:TotalSegmentsInteger.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_1.NonNegativeInteger.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