Class: Aws::CustomerProfiles::Types::SortAttribute

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

Instance Attribute Details

#data_typeString

The data type of the sort attribute (e.g., string, number, date).

Returns:

  • (String)


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

#nameString

The name of the attribute to sort by.

Returns:

  • (String)


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

#orderString

The sort order for the attribute (ascending or descending).

Returns:

  • (String)


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

#typeString

The type of attribute (e.g., profile, calculated).

Returns:

  • (String)


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