Skip to content

Get Data Cells Filter

lakeformation_get_data_cells_filter R Documentation

Returns a data cells filter

Description

Returns a data cells filter.

Usage

lakeformation_get_data_cells_filter(TableCatalogId, DatabaseName,
  TableName, Name)

Arguments

TableCatalogId

[required] The ID of the catalog to which the table belongs.

DatabaseName

[required] A database in the Glue Data Catalog.

TableName

[required] A table in the database.

Name

[required] The name given by the user to the data filter cell.

Value

A list with the following syntax:

list(
  DataCellsFilter = 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"
  )
)

Request syntax

svc$get_data_cells_filter(
  TableCatalogId = "string",
  DatabaseName = "string",
  TableName = "string",
  Name = "string"
)