java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IResource, ITable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-09-06T01:36:38.004Z") @Stability(Deprecated) @Deprecated public class Table extends S3Table
Deprecated.
Use S3Table instead.
(deprecated) A Glue table.

Example:

 IDatabase glueDatabase;
 Table table = Table.Builder.create(this, "Table")
         .storageParameters(List.of(StorageParameter.skipHeaderLineCount(1), StorageParameter.compressionType(CompressionType.GZIP), StorageParameter.custom("foo", "bar"), StorageParameter.custom("separatorChar", ","), StorageParameter.custom(StorageParameters.WRITE_PARALLEL, "off")))
         // ...
         .database(glueDatabase)
         .columns(List.of(Column.builder()
                 .name("col1")
                 .type(Schema.STRING)
                 .build()))
         .dataFormat(DataFormat.CSV)
         .build();
 

  • Constructor Details

    • Table

      protected Table(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • Table

      protected Table(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
    • Table

      @Stability(Experimental) public Table(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull S3TableProps props)
      Deprecated.
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.