Module Values.SchemaDefinitionSource

Describes the schema of the table.

Sourcetype nonrec t = {
  1. allColumns : ColumnDefinitionList.t;
    (*

    The regular columns of the table.

    *)
  2. partitionKeys : PartitionKeyList.t;
    (*

    The columns that are part of the partition key of the table .

    *)
  3. clusteringKeys : ClusteringKeyList.t option;
    (*

    The columns that are part of the clustering key of the table.

    *)
  4. staticColumns : StaticColumnList.t option;
    (*

    The columns that have been defined as STATIC. Static columns store values that are shared by all rows in the same partition.

    *)
}
Sourceval context_ : string
Sourceval make : ?clusteringKeys:??? -> ?staticColumns:??? -> allColumns:ColumnDefinitionList.t -> partitionKeys:PartitionKeyList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of GenericString.t ]) list ] 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