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

GlueTable

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

The database and table in the Glue Data Catalog that is used for input or output data.

interface GlueTable {
CatalogId?: string | null;
ConnectionName?: string | null;
DatabaseName: string;
TableName: string;
}

§Properties

§
CatalogId?: string | null
[src]

A unique identifier for the Glue Data Catalog.

§
ConnectionName?: string | null
[src]

The name of the connection to the Glue Data Catalog.

§
DatabaseName: string
[src]

A database name in the Glue Data Catalog.

§
TableName: string
[src]

A table name in the Glue Data Catalog.