Class: Aws::Glue::Types::SortCriterion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SortCriterion
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Specifies a field to sort by and a sort order.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_name ⇒ String
The name of the field on which to sort.
-
#sort ⇒ String
An ascending or descending sort.
Instance Attribute Details
#field_name ⇒ String
The name of the field on which to sort.
23319 23320 23321 23322 23323 23324 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23319 class SortCriterion < Struct.new( :field_name, :sort) SENSITIVE = [] include Aws::Structure end |
#sort ⇒ String
An ascending or descending sort.
23319 23320 23321 23322 23323 23324 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23319 class SortCriterion < Struct.new( :field_name, :sort) SENSITIVE = [] include Aws::Structure end |