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

GetTableObjectsRequest

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

§Properties

§
CatalogId?: string | null
[src]

The catalog containing the governed table. Defaults to the caller’s account.

§
DatabaseName: string
[src]

The database containing the governed table.

§
MaxResults?: number | null
[src]

Specifies how many values to return in a page.

§
NextToken?: string | null
[src]

A continuation token if this is not the first call to retrieve these objects.

§
PartitionPredicate?: string | null
[src]

A predicate to filter the objects returned based on the partition keys defined in the governed table.

  • The comparison operators supported are: =, >, <, >=, <=
  • The logical operators supported are: AND
  • The data types supported are integer, long, date(yyyy-MM-dd), timestamp(yyyy-MM-dd HH:mm:ssXXX or yyyy-MM-dd HH:mm:ss"), string and decimal.
§
QueryAsOfTime?: Date | number | null
[src]

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

§
TableName: string
[src]

The governed table for which to retrieve objects.

§
TransactionId?: string | null
[src]

The transaction ID at which to read the governed table contents. If this transaction has aborted, an error is returned. If not set, defaults to the most recent committed transaction. Cannot be specified along with QueryAsOfTime.