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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/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)


17419
17420
17421
17422
17423
17424
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17419

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

#orderString

An ascending or descending sort.

Returns:

  • (String)


17419
17420
17421
17422
17423
17424
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17419

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