Module Values.KeyspacesRowSource

Represents a row in an Amazon Keyspaces table, containing regular column values, static column values, and row-level metadata.

Sourcetype nonrec t = {
  1. valueCells : KeyspacesCells.t option;
    (*

    A map of regular (non-static) column cells in the row, where keys are column names and values are the corresponding cells.

    *)
  2. staticCells : KeyspacesCells.t option;
    (*

    A map of static column cells shared by all rows with the same partition key, where keys are column names and values are the corresponding cells.

    *)
  3. rowMetadata : KeyspacesMetadata.t option;
    (*

    Metadata that applies to the entire row, such as timestamps and TTL information.

    *)
}
Sourceval make : ?valueCells:??? -> ?staticCells:??? -> ?rowMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * Awso.Botodata.value) list | `Structure of (string * [> `String of String_.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