Module Values.ClusteringKeySource

The optional clustering column portion of your primary key determines how the data is clustered and sorted within each partition.

Sourcetype nonrec t = {
  1. name : GenericString.t;
    (*

    The name(s) of the clustering column(s).

    *)
  2. orderBy : SortOrder.t;
    (*

    Sets the ascendant (ASC) or descendant (DESC) order modifier.

    *)
}
Sourceval context_ : string
Sourceval make : name:GenericString.t -> orderBy:SortOrder.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GenericString.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