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

GetTableVersionsRequest

import type { GetTableVersionsRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface GetTableVersionsRequest {
CatalogId?: string | null;
DatabaseName: string;
MaxResults?: number | null;
NextToken?: string | null;
TableName: string;
}

§Properties

§
CatalogId?: string | null
[src]

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

§
DatabaseName: string
[src]

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

§
MaxResults?: number | null
[src]

The maximum number of table versions to return in one response.

§
NextToken?: string | null
[src]

A continuation token, if this is not the first call.

§
TableName: string
[src]

The name of the table. For Hive compatibility, this name is entirely lowercase.