Interface CfnTableOptimizerProps

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

@Generated(value="jsii-pacmak/1.99.0 (build 8f757e4)", date="2024-07-01T22:44:02.802Z") @Stability(Stable) public interface CfnTableOptimizerProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnTableOptimizer.

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.*;
 CfnTableOptimizerProps cfnTableOptimizerProps = CfnTableOptimizerProps.builder()
         .catalogId("catalogId")
         .databaseName("databaseName")
         .tableName("tableName")
         .tableOptimizerConfiguration(TableOptimizerConfigurationProperty.builder()
                 .enabled(false)
                 .roleArn("roleArn")
                 .build())
         .type("type")
         .build();
 

See Also: