Values.TableMetadataSourceContains metadata for a table.
type nonrec t = {name : NameString.t option;The name of the table.
*)createTime : Timestamp.t option;The time that the table was created.
*)lastAccessTime : Timestamp.t option;The last time the table was accessed.
*)tableType : TableTypeString.t option;The type of table. In Athena, only EXTERNAL_TABLE is supported.
*)columns : ColumnList.t option;A list of the columns in the table.
*)partitionKeys : ColumnList.t option;A list of the partition keys in the table.
*)parameters : ParametersMap.t option;A set of custom key/value pairs for table properties.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of NameString.t ]) list ]
list
| `Map of
([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ])
list
| `String of NameString.t
| `Timestamp of Timestamp.t ])
list ]