Interface CfnTableOptimizerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTableOptimizerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:10.756Z")
@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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTableOptimizerPropsstatic final classAn implementation forCfnTableOptimizerProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The catalog ID of the table.- See Also:
-
getDatabaseName
The name of the database.For Hive compatibility, this is folded to lowercase when it is stored.
- See Also:
-
getTableName
The table name.For Hive compatibility, this must be entirely lowercase.
- See Also:
-
getTableOptimizerConfiguration
Specifies configuration details of a table optimizer.- See Also:
-
getType
The type of table optimizer.Currently, the only valid value is compaction.
- See Also:
-
builder
- Returns:
- a
CfnTableOptimizerProps.BuilderofCfnTableOptimizerProps
-