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.
24651 24652 24653 24654 24655 24656 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 24651 class SortCriterion < Struct.new( :field_name, :sort) SENSITIVE = [] include Aws::Structure end |
#sort ⇒ String
An ascending or descending sort.
24651 24652 24653 24654 24655 24656 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 24651 class SortCriterion < Struct.new( :field_name, :sort) SENSITIVE = [] include Aws::Structure end |