Class: Aws::Glue::Types::SortCriterion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::SortCriterion
- Includes:
- Structure
- Defined in:
- 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.
23225 23226 23227 23228 23229 23230 |
# File 'lib/aws-sdk-glue/types.rb', line 23225 class SortCriterion < Struct.new( :field_name, :sort) SENSITIVE = [] include Aws::Structure end |
#sort ⇒ String
An ascending or descending sort.
23225 23226 23227 23228 23229 23230 |
# File 'lib/aws-sdk-glue/types.rb', line 23225 class SortCriterion < Struct.new( :field_name, :sort) SENSITIVE = [] include Aws::Structure end |