Interface TableProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, S3TableProps, TableBaseProps
All Known Implementing Classes:
TableProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.799Z") @Stability(Experimental) public interface TableProps extends software.amazon.jsii.JsiiSerializable, S3TableProps
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.glue.alpha.*;
 import software.amazon.awscdk.services.kms.*;
 import software.amazon.awscdk.services.s3.*;
 Bucket bucket;
 Database database;
 DataFormat dataFormat;
 Key key;
 StorageParameter storageParameter;
 TableProps tableProps = TableProps.builder()
         .columns(List.of(Column.builder()
                 .name("name")
                 .type(Type.builder()
                         .inputString("inputString")
                         .isPrimitive(false)
                         .build())
                 // the properties below are optional
                 .comment("comment")
                 .build()))
         .database(database)
         .dataFormat(dataFormat)
         // the properties below are optional
         .bucket(bucket)
         .compressed(false)
         .description("description")
         .enablePartitionFiltering(false)
         .encryption(TableEncryption.S3_MANAGED)
         .encryptionKey(key)
         .parameters(Map.of(
                 "parametersKey", "parameters"))
         .partitionIndexes(List.of(PartitionIndex.builder()
                 .keyNames(List.of("keyNames"))
                 // the properties below are optional
                 .indexName("indexName")
                 .build()))
         .partitionKeys(List.of(Column.builder()
                 .name("name")
                 .type(Type.builder()
                         .inputString("inputString")
                         .isPrimitive(false)
                         .build())
                 // the properties below are optional
                 .comment("comment")
                 .build()))
         .s3Prefix("s3Prefix")
         .storageParameters(List.of(storageParameter))
         .storedAsSubDirectories(false)
         .tableName("tableName")
         .build();