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

GetTablesRequest

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

§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 whose tables to list. For Hive compatibility, this name is entirely lowercase.

§
Expression?: string | null
[src]

A regular expression pattern. If present, only those tables whose names match the pattern are returned.

§
MaxResults?: number | null
[src]

The maximum number of tables to return in a single response.

§
NextToken?: string | null
[src]

A continuation token, included if this is a continuation call.

§
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.