Class: Aws::MarketplaceCatalog::Types::Sort

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

Overview

An object that contains two attributes, SortBy and SortOrder.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#sort_byString

For ListEntities, supported attributes include LastModifiedDate (default) and EntityId. In addition to LastModifiedDate and EntityId, each EntityType might support additional fields.

For ListChangeSets, supported attributes include StartTime and EndTime.

Returns:

  • (String)


2524
2525
2526
2527
2528
2529
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 2524

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

#sort_orderString

The sorting order. Can be ASCENDING or DESCENDING. The default value is DESCENDING.

Returns:

  • (String)


2524
2525
2526
2527
2528
2529
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 2524

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