interface OrderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnPartitionPropsMixin.OrderProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnPartitionPropsMixin_OrderProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnPartitionPropsMixin.OrderProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnPartitionPropsMixin.OrderProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnPartitionPropsMixin » 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/cfn-property-mixins';
const orderProperty: glue.CfnPartitionPropsMixin.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
(optional)
The name of the column.
sortOrder?
Type:
number
(optional)
Indicates that the column is sorted in ascending order ( == 1 ), or in descending order ( ==0 ).

.NET
Go
Java
Python
TypeScript