interface IcebergInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTablePropsMixin.IcebergInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTablePropsMixin_IcebergInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTablePropsMixin.IcebergInputProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTablePropsMixin.IcebergInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTablePropsMixin » IcebergInputProperty |
Specifies an input structure that defines an Apache Iceberg metadata 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 icebergInputProperty: glue_mixins.CfnTablePropsMixin.IcebergInputProperty = {
metadataOperation: 'metadataOperation',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| metadata | string | A required metadata operation. |
| version? | string | The table version for the Iceberg table. |
metadataOperation?
Type:
string
(optional)
A required metadata operation.
Can only be set to CREATE.
version?
Type:
string
(optional)
The table version for the Iceberg table.
Defaults to 2.

.NET
Go
Java
Python
TypeScript