Class CfnTablePropsMixin.IcebergSchemaProperty
Contains details about the schema for an Iceberg table.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.S3Tables.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.IcebergSchemaProperty : CfnTablePropsMixin.IIcebergSchemaProperty
Syntax (vb)
Public Class CfnTablePropsMixin.IcebergSchemaProperty Implements CfnTablePropsMixin.IIcebergSchemaProperty
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.Mixins.Preview.AWS.S3Tables.Mixins;
var icebergSchemaProperty = new IcebergSchemaProperty {
SchemaFieldList = new [] { new SchemaFieldProperty {
Name = "name",
Required = false,
Type = "type"
} }
};
Synopsis
Constructors
| IcebergSchemaProperty() | Contains details about the schema for an Iceberg table. |
Properties
| SchemaFieldList | The schema fields for the table. |
Constructors
IcebergSchemaProperty()
Contains details about the schema for an Iceberg table.
public IcebergSchemaProperty()
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.Mixins.Preview.AWS.S3Tables.Mixins;
var icebergSchemaProperty = new IcebergSchemaProperty {
SchemaFieldList = new [] { new SchemaFieldProperty {
Name = "name",
Required = false,
Type = "type"
} }
};
Properties
SchemaFieldList
The schema fields for the table.
public object? SchemaFieldList { get; set; }