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

TableResource

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

A structure for the table object. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.

interface TableResource {
CatalogId?: string | null;
DatabaseName: string;
Name?: string | null;
TableWildcard?: TableWildcard | null;
}

§Properties

§
CatalogId?: string | null
[src]

The identifier for the Data Catalog. By default, it is the account ID of the caller.

§
DatabaseName: string
[src]

The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.

§
Name?: string | null
[src]

The name of the table.

§
TableWildcard?: TableWildcard | null
[src]

A wildcard object representing every table under a database.

At least one of TableResource$Name or TableResource$TableWildcard is required.