interface IcebergSortFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTable.IcebergSortFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTable_IcebergSortFieldProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTable.IcebergSortFieldProperty |
Python | aws_cdk.aws_s3tables.CfnTable.IcebergSortFieldProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTable » IcebergSortFieldProperty |
A sort field specification for an Iceberg table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3tables as s3tables } from 'aws-cdk-lib';
const icebergSortFieldProperty: s3tables.CfnTable.IcebergSortFieldProperty = {
direction: 'direction',
nullOrder: 'nullOrder',
sourceId: 123,
transform: 'transform',
};
Properties
| Name | Type | Description |
|---|---|---|
| direction | string | Sort direction (asc or desc). |
| null | string | Null value ordering (nulls-first or nulls-last). |
| source | number | The source column ID to sort on. |
| transform | string | The sort transform function. |
direction
Type:
string
Sort direction (asc or desc).
nullOrder
Type:
string
Null value ordering (nulls-first or nulls-last).
sourceId
Type:
number
The source column ID to sort on.
transform
Type:
string
The sort transform function.

.NET
Go
Java
Python
TypeScript