interface TableOptimizerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.TableOptimizerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#TableOptimizerReference |
Java | software.amazon.awscdk.interfaces.glue.TableOptimizerReference |
Python | aws_cdk.interfaces.aws_glue.TableOptimizerReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » TableOptimizerReference |
A reference to a TableOptimizer resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as interfaces_glue } from 'aws-cdk-lib/interfaces';
const tableOptimizerReference: interfaces_glue.TableOptimizerReference = {
catalogId: 'catalogId',
databaseName: 'databaseName',
tableName: 'tableName',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The CatalogId of the TableOptimizer resource. |
| database | string | The DatabaseName of the TableOptimizer resource. |
| table | string | The TableName of the TableOptimizer resource. |
| type | string | The Type of the TableOptimizer resource. |
catalogId
Type:
string
The CatalogId of the TableOptimizer resource.
databaseName
Type:
string
The DatabaseName of the TableOptimizer resource.
tableName
Type:
string
The TableName of the TableOptimizer resource.
type
Type:
string
The Type of the TableOptimizer resource.

.NET
Go
Java
Python
TypeScript