Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DataCellsFilter

import type { DataCellsFilter } from "https://aws-api.deno.dev/v0.3/services/lakeformation.ts?docs=full";

A structure that describes certain columns on certain rows.

interface DataCellsFilter {
ColumnNames?: string[] | null;
ColumnWildcard?: ColumnWildcard | null;
DatabaseName: string;
Name: string;
RowFilter?: RowFilter | null;
TableCatalogId: string;
TableName: string;
}

§Properties

§
ColumnNames?: string[] | null
[src]

A list of column names.

§
ColumnWildcard?: ColumnWildcard | null
[src]

A wildcard with exclusions.

You must specify either a ColumnNames list or the ColumnWildCard.

§
DatabaseName: string
[src]

A database in the Glue Data Catalog.

§
Name: string
[src]

The name given by the user to the data filter cell.

§
RowFilter?: RowFilter | null
[src]

A PartiQL predicate.

§
TableCatalogId: string
[src]

The ID of the catalog to which the table belongs.

§
TableName: string
[src]

A table in the database.