Class: Aws::AmplifyUIBuilder::Types::SortProperty

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#directionString

The direction of the sort, either ascending or descending.

Returns:

  • (String)


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

#fieldString

The field to perform the sort on.

Returns:

  • (String)


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