interface IcebergInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnTablePropsMixin.IcebergInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnTablePropsMixin_IcebergInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnTablePropsMixin.IcebergInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnTablePropsMixin.IcebergInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const icebergInputProperty: glue.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