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

TableIdentifier

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

A structure that describes a target table for resource linking.

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

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog in which the table resides.

§
DatabaseName?: string | null
[src]

The name of the catalog database that contains the target table.

§
Name?: string | null
[src]

The name of the target table.