Class: Aws::Connect::Types::Sort

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

A structure that defineds the field name to sort by and a sort order.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#field_nameString

The name of the field on which to sort.

Returns:

  • (String)


17000
17001
17002
17003
17004
17005
# File 'lib/aws-sdk-connect/types.rb', line 17000

class Sort < Struct.new(
  :field_name,
  :order)
  SENSITIVE = []
  include Aws::Structure
end

#orderString

An ascending or descending sort.

Returns:

  • (String)


17000
17001
17002
17003
17004
17005
# File 'lib/aws-sdk-connect/types.rb', line 17000

class Sort < Struct.new(
  :field_name,
  :order)
  SENSITIVE = []
  include Aws::Structure
end