Delete Table Optimizer
glue_delete_table_optimizer | R Documentation |
Deletes an optimizer and all associated metadata for a table¶
Description¶
Deletes an optimizer and all associated metadata for a table. The optimization will no longer be performed on the table.
Usage¶
glue_delete_table_optimizer(CatalogId, DatabaseName, TableName, Type)
Arguments¶
CatalogId |
[required] The Catalog ID of the table. |
DatabaseName |
[required] The name of the database in the catalog in which the table resides. |
TableName |
[required] The name of the table. |
Type |
[required] The type of table optimizer. |
Value¶
An empty list.
Request syntax¶
svc$delete_table_optimizer(
CatalogId = "string",
DatabaseName = "string",
TableName = "string",
Type = "compaction"|"retention"|"orphan_file_deletion"
)