TableOptimizerReference
- class aws_cdk.interfaces.aws_glue.TableOptimizerReference(*, catalog_id, database_name, table_name, type)
Bases:
objectA reference to a TableOptimizer resource.
- Parameters:
catalog_id (
str) – The CatalogId of the TableOptimizer resource.database_name (
str) – The DatabaseName of the TableOptimizer resource.table_name (
str) – The TableName of the TableOptimizer resource.type (
str) – The Type of the TableOptimizer resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_glue as interfaces_glue table_optimizer_reference = interfaces_glue.TableOptimizerReference( catalog_id="catalogId", database_name="databaseName", table_name="tableName", type="type" )
Attributes
- catalog_id
The CatalogId of the TableOptimizer resource.
- database_name
The DatabaseName of the TableOptimizer resource.
- table_name
The TableName of the TableOptimizer resource.
- type
The Type of the TableOptimizer resource.