AWS::Glue::TableThe `AWS::Glue::Table` resource specifies tabular data in the AWS Glue data catalog. For more information, see [Defining Tables in the AWS Glue Data Catalog](https://docs.aws.amazon.com/glue/latest/dg/tables-described.html) and [Table Structure](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-catalog-tables.html#aws-glue-api-catalog-tables-Table) in the *AWS Glue Developer Guide* .
import { CfnTable } from 'aws-cdk-lib/aws-glue';Or use the module namespace:
import * as glue from 'aws-cdk-lib/aws-glue';
// glue.CfnTableConfiguration passed to the constructor as CfnTableProps.
catalogIdRequiredstringThe ID of the Data Catalog in which to create the `Table` .
databaseNameRequiredstringThe name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.
tableInputRequiredIResolvable | TableInputPropertyA structure used to define a table.
openTableFormatInputOptionalIResolvable | OpenTableFormatInputPropertySpecifies an `OpenTableFormatInput` structure when creating an open format table.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-glueAWS::Glue::Table