Class CfnTable.OrderProperty
Specifies the sort order of a sorted column.
Inheritance
System.Object
CfnTable.OrderProperty
Implements
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.AWS.Glue.dll
Syntax (csharp)
public class OrderProperty : Object, CfnTable.IOrderProperty
Syntax (vb)
Public Class OrderProperty
Inherits Object
Implements CfnTable.IOrderProperty
Remarks
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var orderProperty = new OrderProperty {
Column = "column",
SortOrder = 123
};
Synopsis
Constructors
OrderProperty() |
Properties
Column | The name of the column. |
SortOrder | Indicates that the column is sorted in ascending order ( |
Constructors
OrderProperty()
public OrderProperty()
Properties
Column
The name of the column.
public string Column { get; set; }
Property Value
System.String
Remarks
SortOrder
Indicates that the column is sorted in ascending order ( == 1
), or in descending order ( ==0
).
public double SortOrder { get; set; }
Property Value
System.Double