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

GetTableRequest

import type { GetTableRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface GetTableRequest {
CatalogId?: string | null;
DatabaseName: string;
Name: string;
QueryAsOfTime?: Date | number | null;
TransactionId?: string | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.

§
DatabaseName: string
[src]

The name of the database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.

§
Name: string
[src]

The name of the table for which to retrieve the definition. For Hive compatibility, this name is entirely lowercase.

§
QueryAsOfTime?: Date | number | null
[src]

The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with TransactionId.

§
TransactionId?: string | null
[src]

The transaction ID at which to read the table contents.