aws-cdk-lib.aws_glue.CfnTable.OrderProperty

interface OrderProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnTable.OrderProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_OrderProperty
Javasoftware.amazon.awscdk.services.glue.CfnTable.OrderProperty
Pythonaws_cdk.aws_glue.CfnTable.OrderProperty
TypeScript aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
const orderProperty: glue.CfnTable.OrderProperty = {
  column: 'column',
  sortOrder: 123,
};

Properties

NameTypeDescription
columnstringThe name of the column.
sortOrdernumberIndicates 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 ).