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

TableMember

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

The properties of a table.

interface TableMember {
name?: string | null;
schema?: string | null;
type?: string | null;
}

§Properties

§
name?: string | null
[src]

The name of the table.

§
schema?: string | null
[src]

The schema containing the table.

§
type?: string | null
[src]

The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.