Interface CfnTable.IIcebergSortOrderProperty
Sort order specification for an Iceberg table.
Namespace: Amazon.CDK.AWS.S3Tables
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTable.IIcebergSortOrderProperty
Syntax (vb)
Public Interface CfnTable.IIcebergSortOrderProperty
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.AWS.S3Tables;
var icebergSortOrderProperty = new IcebergSortOrderProperty {
Fields = new [] { new IcebergSortFieldProperty {
Direction = "direction",
NullOrder = "nullOrder",
SourceId = 123,
Transform = "transform"
} },
// the properties below are optional
OrderId = 123
};
Synopsis
Properties
| Fields | List of sort fields for an Iceberg table. |
| OrderId | The sort order ID (defaults to 1 if not specified, 0 is reserved for unsorted). |
Properties
Fields
List of sort fields for an Iceberg table.
object Fields { get; }
Property Value
Remarks
OrderId
The sort order ID (defaults to 1 if not specified, 0 is reserved for unsorted).
double? OrderId { get; }