interface IcebergSortFieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnTablePropsMixin.IcebergSortFieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnTablePropsMixin_IcebergSortFieldProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnTablePropsMixin.IcebergSortFieldProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnTablePropsMixin.IcebergSortFieldProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » CfnTablePropsMixin » 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/cfn-property-mixins';
const icebergSortFieldProperty: s3tables.CfnTablePropsMixin.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
(optional)
Sort direction (asc or desc).
nullOrder?
Type:
string
(optional)
Null value ordering (nulls-first or nulls-last).
sourceId?
Type:
number
(optional)
The source column ID to sort on.
transform?
Type:
string
(optional)
The sort transform function.

.NET
Go
Java
Python
TypeScript