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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2370
2371
2372
2373
2374
2375
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 2370

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)


2370
2371
2372
2373
2374
2375
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 2370

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