Creates a new table definition in the Data Catalog.
See https://www.paws-r-sdk.com/docs/glue_create_table/ for full documentation.
Usage
glue_create_table(
CatalogId = NULL,
DatabaseName,
Name = NULL,
TableInput = NULL,
PartitionIndexes = NULL,
TransactionId = NULL,
OpenTableFormatInput = NULL
)Arguments
- CatalogId
The ID of the Data Catalog in which to create the
Table. If none is supplied, the Amazon Web Services account ID is used by default.- DatabaseName
[required] The catalog database in which to create the new table. For Hive compatibility, this name is entirely lowercase.
- Name
The unique identifier for the table within the specified database that will be created in the Glue Data Catalog.
- TableInput
The
TableInputobject that defines the metadata table to create in the catalog.- PartitionIndexes
A list of partition indexes,
PartitionIndexstructures, to create in the table.- TransactionId
The ID of the transaction.
- OpenTableFormatInput
Specifies an
OpenTableFormatInputstructure when creating an open format table.