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

TaggedTable

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

A structure describing a table resource with LF-tags.

interface TaggedTable {
LFTagOnDatabase?: LFTagPair[] | null;
LFTagsOnColumns?: ColumnLFTag[] | null;
LFTagsOnTable?: LFTagPair[] | null;
Table?: TableResource | null;
}

§Properties

§
LFTagOnDatabase?: LFTagPair[] | null
[src]

A list of LF-tags attached to the database where the table resides.

§
LFTagsOnColumns?: ColumnLFTag[] | null
[src]

A list of LF-tags attached to columns in the table.

§
LFTagsOnTable?: LFTagPair[] | null
[src]

A list of LF-tags attached to the table.

§
Table?: TableResource | null
[src]

A table that has LF-tags attached to it.