Values.KeyspacesRowSourceRepresents a row in an Amazon Keyspaces table, containing regular column values, static column values, and row-level metadata.
type nonrec t = {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.
*)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.
*)rowMetadata : KeyspacesMetadata.t option;Metadata that applies to the entire row, such as timestamps and TTL information.
*)}val 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 ]