Class: Aws::PartnerCentralSelling::Types::SolutionSort
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::SolutionSort
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
Configures the solutions' response sorting that enables partners to order solutions based on specified attributes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sort_by ⇒ String
Specifies the attribute to sort by, such as
Name
,CreatedDate
, orStatus
. -
#sort_order ⇒ String
Specifies the sorting order, either
Ascending
orDescending
.
Instance Attribute Details
#sort_by ⇒ String
Specifies the attribute to sort by, such as Name
, CreatedDate
,
or Status
.
2983 2984 2985 2986 2987 2988 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 2983 class SolutionSort < Struct.new( :sort_by, :sort_order) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
Specifies the sorting order, either Ascending
or Descending
. The
default is Descending
.
2983 2984 2985 2986 2987 2988 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 2983 class SolutionSort < Struct.new( :sort_by, :sort_order) SENSITIVE = [] include Aws::Structure end |