List Data Cells Filter
| lakeformation_list_data_cells_filter | R Documentation |
Lists all the data cell filters on a table¶
Description¶
Lists all the data cell filters on a table.
Usage¶
lakeformation_list_data_cells_filter(Table, NextToken, MaxResults)
Arguments¶
Table |
A table in the Glue Data Catalog. |
NextToken |
A continuation token, if this is a continuation call. |
MaxResults |
The maximum size of the response. |
Value¶
A list with the following syntax:
list(
DataCellsFilters = list(
list(
TableCatalogId = "string",
DatabaseName = "string",
TableName = "string",
Name = "string",
RowFilter = list(
FilterExpression = "string",
AllRowsWildcard = list()
),
ColumnNames = list(
"string"
),
ColumnWildcard = list(
ExcludedColumnNames = list(
"string"
)
),
VersionId = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_data_cells_filter(
Table = list(
CatalogId = "string",
DatabaseName = "string",
Name = "string",
TableWildcard = list()
),
NextToken = "string",
MaxResults = 123
)