Class CfnTablePropsMixin.OpenTableFormatInputProperty
Specifies an OpenTableFormatInput structure when creating an open format table.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Glue
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.OpenTableFormatInputProperty : CfnTablePropsMixin.IOpenTableFormatInputProperty
Syntax (vb)
Public Class CfnTablePropsMixin.OpenTableFormatInputProperty Implements CfnTablePropsMixin.IOpenTableFormatInputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Glue;
var openTableFormatInputProperty = new OpenTableFormatInputProperty {
IcebergInput = new IcebergInputProperty {
MetadataOperation = "metadataOperation",
Version = "version"
}
};
Synopsis
Constructors
| OpenTableFormatInputProperty() | Specifies an |
Properties
| IcebergInput | Specifies an |
Constructors
OpenTableFormatInputProperty()
Specifies an OpenTableFormatInput structure when creating an open format table.
public OpenTableFormatInputProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Glue;
var openTableFormatInputProperty = new OpenTableFormatInputProperty {
IcebergInput = new IcebergInputProperty {
MetadataOperation = "metadataOperation",
Version = "version"
}
};
Properties
IcebergInput
Specifies an IcebergInput structure that defines an Apache Iceberg metadata table.
public object? IcebergInput { get; set; }