Module Values.KeyspacesCell

Represents a cell in an Amazon Keyspaces table, containing both the value and metadata about the cell.

Sourcetype nonrec t = {
  1. value : KeyspacesCellValue.t option;
    (*

    The value stored in this cell, which can be of various data types supported by Amazon Keyspaces.

    *)
  2. metadata : KeyspacesMetadata.t option;
    (*

    Metadata associated with this cell, such as time-to-live (TTL) expiration time and write timestamp.

    *)
}
Sourceval make : ?value:KeyspacesCellValue.t -> ?metadata:KeyspacesMetadata.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t