lakeformation_get_table_objects: Returns the set of Amazon S3 objects that make up the...

View source: R/lakeformation_operations.R

lakeformation_get_table_objectsR Documentation

Returns the set of Amazon S3 objects that make up the specified governed table

Description

Returns the set of Amazon S3 objects that make up the specified governed table. A transaction ID or timestamp can be specified for time-travel queries.

See https://www.paws-r-sdk.com/docs/lakeformation_get_table_objects/ for full documentation.

Usage

lakeformation_get_table_objects(
  CatalogId = NULL,
  DatabaseName,
  TableName,
  TransactionId = NULL,
  QueryAsOfTime = NULL,
  PartitionPredicate = NULL,
  MaxResults = NULL,
  NextToken = NULL
)

Arguments

CatalogId

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

DatabaseName

[required] The database containing the governed table.

TableName

[required] The governed table for which to retrieve objects.

TransactionId

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.

QueryAsOfTime

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.

PartitionPredicate

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.

MaxResults

Specifies how many values to return in a page.

NextToken

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


paws.database documentation built on Sept. 12, 2023, 1:21 a.m.