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 properties;
var openTableFormatInputProperty = new OpenTableFormatInputProperty {
IcebergInput = new IcebergInputProperty {
IcebergTableInput = new IcebergTableInputProperty {
Location = "location",
PartitionSpec = new IcebergPartitionSpecProperty {
Fields = new [] { new IcebergPartitionFieldProperty {
FieldId = 123,
Name = "name",
SourceId = 123,
Transform = "transform"
} },
SpecId = 123
},
Properties = properties,
Schema = new IcebergSchemaProperty {
Fields = new [] { new IcebergStructFieldProperty {
Doc = "doc",
Id = 123,
Name = "name",
Required = false,
Type = "type"
} },
IdentifierFieldIds = new [] { 123 },
SchemaId = 123,
Type = "type"
},
WriteOrder = new IcebergSortOrderProperty {
Fields = new [] { new IcebergSortFieldProperty {
Direction = "direction",
NullOrder = "nullOrder",
SourceId = 123,
Transform = "transform"
} },
OrderId = 123
}
},
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 properties;
var openTableFormatInputProperty = new OpenTableFormatInputProperty {
IcebergInput = new IcebergInputProperty {
IcebergTableInput = new IcebergTableInputProperty {
Location = "location",
PartitionSpec = new IcebergPartitionSpecProperty {
Fields = new [] { new IcebergPartitionFieldProperty {
FieldId = 123,
Name = "name",
SourceId = 123,
Transform = "transform"
} },
SpecId = 123
},
Properties = properties,
Schema = new IcebergSchemaProperty {
Fields = new [] { new IcebergStructFieldProperty {
Doc = "doc",
Id = 123,
Name = "name",
Required = false,
Type = "type"
} },
IdentifierFieldIds = new [] { 123 },
SchemaId = 123,
Type = "type"
},
WriteOrder = new IcebergSortOrderProperty {
Fields = new [] { new IcebergSortFieldProperty {
Direction = "direction",
NullOrder = "nullOrder",
SourceId = 123,
Transform = "transform"
} },
OrderId = 123
}
},
MetadataOperation = "metadataOperation",
Version = "version"
}
};
Properties
IcebergInput
Specifies an IcebergInput structure that defines an Apache Iceberg metadata table.
public object? IcebergInput { get; set; }