Interface CfnTableMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTableMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:04.841Z") @Stability(Stable) public interface CfnTableMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnTablePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.s3tables.*;
 CfnTableMixinProps cfnTableMixinProps = CfnTableMixinProps.builder()
         .compaction(CompactionProperty.builder()
                 .status("status")
                 .targetFileSizeMb(123)
                 .build())
         .icebergMetadata(IcebergMetadataProperty.builder()
                 .icebergPartitionSpec(IcebergPartitionSpecProperty.builder()
                         .fields(List.of(IcebergPartitionFieldProperty.builder()
                                 .fieldId(123)
                                 .name("name")
                                 .sourceId(123)
                                 .transform("transform")
                                 .build()))
                         .specId(123)
                         .build())
                 .icebergSchema(IcebergSchemaProperty.builder()
                         .schemaFieldList(List.of(SchemaFieldProperty.builder()
                                 .id(123)
                                 .name("name")
                                 .required(false)
                                 .type("type")
                                 .build()))
                         .build())
                 .icebergSortOrder(IcebergSortOrderProperty.builder()
                         .fields(List.of(IcebergSortFieldProperty.builder()
                                 .direction("direction")
                                 .nullOrder("nullOrder")
                                 .sourceId(123)
                                 .transform("transform")
                                 .build()))
                         .orderId(123)
                         .build())
                 .tableProperties(Map.of(
                         "tablePropertiesKey", "tableProperties"))
                 .build())
         .namespace("namespace")
         .openTableFormat("openTableFormat")
         .snapshotManagement(SnapshotManagementProperty.builder()
                 .maxSnapshotAgeHours(123)
                 .minSnapshotsToKeep(123)
                 .status("status")
                 .build())
         .storageClassConfiguration(StorageClassConfigurationProperty.builder()
                 .storageClass("storageClass")
                 .build())
         .tableBucketArn("tableBucketArn")
         .tableName("tableName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .withoutMetadata("withoutMetadata")
         .build();
 

See Also: