@aws-cdk/aws-glue-alpha
Version:
The CDK Construct Library for AWS::Glue
13 lines (12 loc) • 318 B
TypeScript
import { S3Table, S3TableProps } from './s3-table';
export interface TableProps extends S3TableProps {
}
/**
* A Glue table.
*
* @deprecated Use {@link S3Table} instead.
*/
export declare class Table extends S3Table {
/** Uniquely identifies this class. */
static readonly PROPERTY_INJECTION_ID: string;
}