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)


1092
1093
1094
1095
1096
1097
# File 'gems/aws-sdk-marketplaceagreement/lib/aws-sdk-marketplaceagreement/types.rb', line 1092

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)


1092
1093
1094
1095
1096
1097
# File 'gems/aws-sdk-marketplaceagreement/lib/aws-sdk-marketplaceagreement/types.rb', line 1092

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