Interface IntegerPartitionProjectionConfigurationProps

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-17T14:54:30.074Z") @Stability(Deprecated) @Deprecated public interface IntegerPartitionProjectionConfigurationProps extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Properties for INTEGER partition projection configuration.

Example:

 Database myDatabase;
 S3Table.Builder.create(this, "MyTable")
         .database(myDatabase)
         .columns(List.of(Column.builder()
                 .name("data")
                 .type(Schema.STRING)
                 .build()))
         .partitionKeys(List.of(Column.builder()
                 .name("year")
                 .type(Schema.INTEGER)
                 .build()))
         .dataFormat(DataFormat.JSON)
         .partitionProjection(Map.of(
                 "year", PartitionProjectionConfiguration.integer(IntegerPartitionProjectionConfigurationProps.builder()
                         .min(2020)
                         .max(2023)
                         .interval(1) // optional, defaults to 1
                         .digits(4)
                         .build())))
         .build();