interface OrderProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Glue.CfnTable.OrderProperty | 
  Java | software.amazon.awscdk.services.glue.CfnTable.OrderProperty | 
  Python | aws_cdk.aws_glue.CfnTable.OrderProperty | 
  TypeScript  | @aws-cdk/aws-glue » CfnTable » OrderProperty | 
Specifies the sort order of a sorted column.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue from '@aws-cdk/aws-glue';
const orderProperty: glue.CfnTable.OrderProperty = {
  column: 'column',
  sortOrder: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| column | string | The name of the column. | 
| sort | number | Indicates that the column is sorted in ascending order ( == 1 ), or in descending order ( ==0 ). | 
column
Type:
string
The name of the column.
sortOrder
Type:
number
Indicates that the column is sorted in ascending order ( == 1 ), or in descending order ( ==0 ).

 .NET
 Java
 Python
 TypeScript