Class: Aws::Glue::Types::Order
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Order
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Specifies the sort order of a sorted column.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column ⇒ String
The name of the column.
-
#sort_order ⇒ Integer
Indicates that the column is sorted in ascending order (‘== 1`), or in descending order (`==0`).
Instance Attribute Details
#column ⇒ String
The name of the column.
17010 17011 17012 17013 17014 17015 |
# File 'lib/aws-sdk-glue/types.rb', line 17010 class Order < Struct.new( :column, :sort_order) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ Integer
Indicates that the column is sorted in ascending order (‘== 1`), or in descending order (`==0`).
17010 17011 17012 17013 17014 17015 |
# File 'lib/aws-sdk-glue/types.rb', line 17010 class Order < Struct.new( :column, :sort_order) SENSITIVE = [] include Aws::Structure end |