Class: Aws::Glue::Types::Order

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#columnString

The name of the column.

Returns:

  • (String)


16346
16347
16348
16349
16350
16351
# File 'lib/aws-sdk-glue/types.rb', line 16346

class Order < Struct.new(
  :column,
  :sort_order)
  SENSITIVE = []
  include Aws::Structure
end

#sort_orderInteger

Indicates that the column is sorted in ascending order (‘== 1`), or in descending order (`==0`).

Returns:

  • (Integer)


16346
16347
16348
16349
16350
16351
# File 'lib/aws-sdk-glue/types.rb', line 16346

class Order < Struct.new(
  :column,
  :sort_order)
  SENSITIVE = []
  include Aws::Structure
end