interface OpenTableFormatInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.OpenTableFormatInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_OpenTableFormatInputProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.OpenTableFormatInputProperty |
Python | aws_cdk.aws_glue.CfnTable.OpenTableFormatInputProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnTable » OpenTableFormatInputProperty |
Specifies an OpenTableFormatInput structure when creating an open format table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const openTableFormatInputProperty: glue.CfnTable.OpenTableFormatInputProperty = {
icebergInput: {
metadataOperation: 'metadataOperation',
version: 'version',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iceberg | IResolvable | Iceberg | Specifies an IcebergInput structure that defines an Apache Iceberg metadata table. |
icebergInput?
Type:
IResolvable | Iceberg
(optional)
Specifies an IcebergInput structure that defines an Apache Iceberg metadata table.

.NET
Go
Java
Python
TypeScript