interface OrderProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.CfnPartition.OrderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnPartition_OrderProperty |
Java | software.amazon.awscdk.services.glue.CfnPartition.OrderProperty |
Python | aws_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
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
(optional)
Indicates that the column is sorted in ascending order ( == 1
), or in descending order ( ==0
).