interface OrderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTablePropsMixin.OrderProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTablePropsMixin_OrderProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTablePropsMixin.OrderProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTablePropsMixin.OrderProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTablePropsMixin » OrderProperty |
Specifies the sort order of a sorted column.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const orderProperty: glue_mixins.CfnTablePropsMixin.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