Values_0.BatchDeleteTableVersionRequestSourceDeletes a specified batch of versions of a table.
type nonrec t = {catalogId : CatalogIdString.t option;The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.
*)databaseName : NameString.t;The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.
*)tableName : NameString.t;The name of the table. For Hive compatibility, this name is entirely lowercase.
*)versionIds : BatchDeleteTableVersionList.t;A list of the IDs of versions to be deleted. A VersionId is a string representation of an integer. Each version is incremented by 1.
*)}val make :
?catalogId:??? ->
databaseName:NameString.t ->
tableName:NameString.t ->
versionIds:BatchDeleteTableVersionList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of VersionString.t ] list
| `String of CatalogIdString.t ])
list ]