Class: Aws::MarketplaceAgreement::Types::Sort

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-marketplaceagreement/lib/aws-sdk-marketplaceagreement/types.rb

Overview

An object that contains the SortBy and SortOrder attributes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#sort_byString

The attribute on which the data is grouped, which can be by StartTime and EndTime. The default value is EndTime.

Returns:

  • (String)


1103
1104
1105
1106
1107
1108
# File 'gems/aws-sdk-marketplaceagreement/lib/aws-sdk-marketplaceagreement/types.rb', line 1103

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

#sort_orderString

The sorting order, which can be ASCENDING or DESCENDING. The default value is DESCENDING.

Returns:

  • (String)


1103
1104
1105
1106
1107
1108
# File 'gems/aws-sdk-marketplaceagreement/lib/aws-sdk-marketplaceagreement/types.rb', line 1103

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