Module Values.KeyspacesCellMapDefinition

Represents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.

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

    The key of this map entry in the Amazon Keyspaces cell.

    *)
  2. value : KeyspacesCellValue.t option;
    (*

    The value associated with the key in this map entry.

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

    Metadata for this specific key-value pair within the map, such as timestamps and TTL information.

    *)
}
Sourceval make : ?key:KeyspacesCellValue.t -> ?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