List Table Storage Optimizers
lakeformation_list_table_storage_optimizers | R Documentation |
Returns the configuration of all storage optimizers associated with a specified table¶
Description¶
Returns the configuration of all storage optimizers associated with a specified table.
Usage¶
lakeformation_list_table_storage_optimizers(CatalogId, DatabaseName,
TableName, StorageOptimizerType, MaxResults, NextToken)
Arguments¶
CatalogId |
The Catalog ID of the table. |
DatabaseName |
[required] Name of the database where the table is present. |
TableName |
[required] Name of the table. |
StorageOptimizerType |
The specific type of storage optimizers to list. The supported
value is |
MaxResults |
The number of storage optimizers to return on each call. |
NextToken |
A continuation token, if this is a continuation call. |
Value¶
A list with the following syntax:
list(
StorageOptimizerList = list(
list(
StorageOptimizerType = "COMPACTION"|"GARBAGE_COLLECTION"|"ALL",
Config = list(
"string"
),
ErrorMessage = "string",
Warnings = "string",
LastRunDetails = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_table_storage_optimizers(
CatalogId = "string",
DatabaseName = "string",
TableName = "string",
StorageOptimizerType = "COMPACTION"|"GARBAGE_COLLECTION"|"ALL",
MaxResults = 123,
NextToken = "string"
)