Class: Aws::AmplifyUIBuilder::Types::SortProperty
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyUIBuilder::Types::SortProperty
- Defined in:
- gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb
Overview
Describes how to sort the data that you bind to a component.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#direction ⇒ String
The direction of the sort, either ascending or descending.
-
#field ⇒ String
The field to perform the sort on.
Instance Attribute Details
#direction ⇒ String
The direction of the sort, either ascending or descending.
2939 2940 2941 2942 2943 2944 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 2939 class SortProperty < Struct.new( :field, :direction) SENSITIVE = [] include Aws::Structure end |
#field ⇒ String
The field to perform the sort on.
2939 2940 2941 2942 2943 2944 |
# File 'gems/aws-sdk-amplifyuibuilder/lib/aws-sdk-amplifyuibuilder/types.rb', line 2939 class SortProperty < Struct.new( :field, :direction) SENSITIVE = [] include Aws::Structure end |