Class: Aws::MarketplaceCatalog::Types::Sort
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::MarketplaceCatalog::Types::Sort
 
 
- 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
- 
  
    
      #sort_by  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
For
ListEntities, supported attributes includeLastModifiedDate(default) andEntityId. - 
  
    
      #sort_order  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The sorting order.
 
Instance Attribute Details
#sort_by ⇒ String
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.
      2733 2734 2735 2736 2737 2738  | 
    
      # File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 2733 class Sort < Struct.new( :sort_by, :sort_order) SENSITIVE = [] include Aws::Structure end  | 
  
#sort_order ⇒ String
The sorting order. Can be ASCENDING or DESCENDING. The default
value is DESCENDING.
      2733 2734 2735 2736 2737 2738  | 
    
      # File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 2733 class Sort < Struct.new( :sort_by, :sort_order) SENSITIVE = [] include Aws::Structure end  |