interface OpenTableFormatInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTablePropsMixin.OpenTableFormatInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTablePropsMixin_OpenTableFormatInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTablePropsMixin.OpenTableFormatInputProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTablePropsMixin.OpenTableFormatInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTablePropsMixin » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const openTableFormatInputProperty: glue_mixins.CfnTablePropsMixin.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