Jump to Content

New API Documentation - Developer Preview Available

We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.

Interface GetTableObjectsCommandInputProtected

The input for GetTableObjectsCommand.

Hierarchy

Properties

CatalogId?: string

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

DatabaseName: undefined | string

The database containing the governed table.

MaxResults?: number

Specifies how many values to return in a page.

NextToken?: string

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

PartitionPredicate?: string

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

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: undefined | string

The governed table for which to retrieve objects.

TransactionId?: string

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.