Delete Partition Index
glue_delete_partition_index | R Documentation |
Deletes a specified partition index from an existing table¶
Description¶
Deletes a specified partition index from an existing table.
Usage¶
glue_delete_partition_index(CatalogId, DatabaseName, TableName,
IndexName)
Arguments¶
CatalogId |
The catalog ID where the table resides. |
DatabaseName |
[required] Specifies the name of a database from which you want to delete a partition index. |
TableName |
[required] Specifies the name of a table from which you want to delete a partition index. |
IndexName |
[required] The name of the partition index to be deleted. |
Value¶
An empty list.
Request syntax¶
svc$delete_partition_index(
CatalogId = "string",
DatabaseName = "string",
TableName = "string",
IndexName = "string"
)