Create Partition Index
glue_create_partition_index | R Documentation |
Creates a specified partition index in an existing table¶
Description¶
Creates a specified partition index in an existing table.
Usage¶
glue_create_partition_index(CatalogId, DatabaseName, TableName,
PartitionIndex)
Arguments¶
CatalogId |
The catalog ID where the table resides. |
DatabaseName |
[required] Specifies the name of a database in which you want to create a partition index. |
TableName |
[required] Specifies the name of a table in which you want to create a partition index. |
PartitionIndex |
[required] Specifies a |
Value¶
An empty list.
Request syntax¶
svc$create_partition_index(
CatalogId = "string",
DatabaseName = "string",
TableName = "string",
PartitionIndex = list(
Keys = list(
"string"
),
IndexName = "string"
)
)