Retrieves the definitions of some or all of the tables in a given Database
Source:R/glue_operations.R
glue_get_tables.RdRetrieves the definitions of some or all of the tables in a given Database.
See https://www.paws-r-sdk.com/docs/glue_get_tables/ for full documentation.
Usage
glue_get_tables(
CatalogId = NULL,
DatabaseName,
Expression = NULL,
NextToken = NULL,
MaxResults = NULL,
TransactionId = NULL,
QueryAsOfTime = NULL,
AuditContext = NULL,
IncludeStatusDetails = NULL,
AttributesToGet = NULL
)Arguments
- CatalogId
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
[required] The database in the catalog whose tables to list. For Hive compatibility, this name is entirely lowercase.
- Expression
A regular expression pattern. If present, only those tables whose names match the pattern are returned.
- NextToken
A continuation token, included if this is a continuation call.
- MaxResults
The maximum number of tables to return in a single response.
- TransactionId
The transaction ID at which to read the table contents.
- QueryAsOfTime
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.- AuditContext
A structure containing the Lake Formation audit context.
- IncludeStatusDetails
Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.
- AttributesToGet
Specifies the table fields returned by the
get_tablescall. This parameter doesn’t accept an empty list. The request must includeNAME.The following are the valid combinations of values:
NAME- Names of all tables in the database.NAME,TABLE_TYPE- Names of all tables and the table types.