Class: Aws::CustomerProfiles::Types::SortAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::SortAttribute
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
Defines the characteristics and rules for sorting by a specific attribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_type ⇒ String
The data type of the sort attribute (e.g., string, number, date).
-
#name ⇒ String
The name of the attribute to sort by.
-
#order ⇒ String
The sort order for the attribute (ascending or descending).
-
#type ⇒ String
The type of attribute (e.g., profile, calculated).
Instance Attribute Details
#data_type ⇒ String
The data type of the sort attribute (e.g., string, number, date).
10353 10354 10355 10356 10357 10358 10359 10360 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 10353 class SortAttribute < Struct.new( :name, :data_type, :order, :type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the attribute to sort by.
10353 10354 10355 10356 10357 10358 10359 10360 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 10353 class SortAttribute < Struct.new( :name, :data_type, :order, :type) SENSITIVE = [] include Aws::Structure end |
#order ⇒ String
The sort order for the attribute (ascending or descending).
10353 10354 10355 10356 10357 10358 10359 10360 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 10353 class SortAttribute < Struct.new( :name, :data_type, :order, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of attribute (e.g., profile, calculated).
10353 10354 10355 10356 10357 10358 10359 10360 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 10353 class SortAttribute < Struct.new( :name, :data_type, :order, :type) SENSITIVE = [] include Aws::Structure end |