aws-cdk-lib.aws_glue.CfnPartition.OrderProperty

interface OrderProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnPartition.OrderProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnPartition_OrderProperty
Javasoftware.amazon.awscdk.services.glue.CfnPartition.OrderProperty
Pythonaws_cdk.aws_glue.CfnPartition.OrderProperty
TypeScript aws-cdk-lib » aws_glue » CfnPartition » 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.CfnPartition.OrderProperty = {
  column: 'column',

  // the properties below are optional
  sortOrder: 123,
};

Properties

NameTypeDescription
columnstringThe name of the column.
sortOrder?numberIndicates 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 (optional)

Indicates that the column is sorted in ascending order ( == 1 ), or in descending order ( ==0 ).