Class: Aws::MarketplaceAgreement::Types::Sort
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceAgreement::Types::Sort
- 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
-
#sort_by ⇒ String
The attribute on which the data is grouped, which can be by
StartTime
andEndTime
. -
#sort_order ⇒ String
The sorting order, which can be
ASCENDING
orDESCENDING
.
Instance Attribute Details
#sort_by ⇒ String
The attribute on which the data is grouped, which can be by
StartTime
and EndTime
. The default value is EndTime
.
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_order ⇒ String
The sorting order, which can be ASCENDING
or DESCENDING
. The
default value is DESCENDING
.
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 |