Class: Aws::QuickSight::Types::FieldSort
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::FieldSort
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The sort configuration for a field in a field well.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#direction ⇒ String
The sort direction.
-
#field_id ⇒ String
The sort configuration target field.
Instance Attribute Details
#direction ⇒ String
The sort direction. Choose one of the following options:
ASC
: AscendingDESC
: Descending
15473 15474 15475 15476 15477 15478 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 15473 class FieldSort < Struct.new( :field_id, :direction) SENSITIVE = [] include Aws::Structure end |