Values.KeyspacesCellMapDefinitionRepresents a key-value pair within a map data type in Amazon Keyspaces, including the associated metadata.
type nonrec t = {key : KeyspacesCellValue.t option;The key of this map entry in the Amazon Keyspaces cell.
*)value : KeyspacesCellValue.t option;The value associated with the key in this map entry.
*)metadata : KeyspacesMetadata.t option;Metadata for this specific key-value pair within the map, such as timestamps and TTL information.
*)}val make :
?key:KeyspacesCellValue.t ->
?value:KeyspacesCellValue.t ->
?metadata:KeyspacesMetadata.t ->
unit ->
t