package awsglue // 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 "github.com/aws/aws-cdk-go/awscdk" // // orderProperty := &OrderProperty{ // Column: jsii.String("column"), // SortOrder: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html // type CfnTable_OrderProperty struct { // The name of the column. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html#cfn-glue-table-order-column // Column *string `field:"required" json:"column" yaml:"column"` // Indicates that the column is sorted in ascending order ( `== 1` ), or in descending order ( `==0` ). // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html#cfn-glue-table-order-sortorder // SortOrder *float64 `field:"required" json:"sortOrder" yaml:"sortOrder"` }