Class: Aws::PartnerCentralSelling::Types::ProspectingFromEngagementTaskSort
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::ProspectingFromEngagementTaskSort
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
Specifies the sort configuration for
ListProspectingFromEngagementTasks. Contains the field to sort by
and the sort direction.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sort_by ⇒ String
The field by which to sort the returned tasks.
-
#sort_order ⇒ String
The direction in which to sort the results.
Instance Attribute Details
#sort_by ⇒ String
The field by which to sort the returned tasks. Valid values:
StartTime (task creation timestamp), TaskName (alphabetically by
task name), and FailedEngagementCount (number of failed
engagements).
5968 5969 5970 5971 5972 5973 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 5968 class ProspectingFromEngagementTaskSort < Struct.new( :sort_order, :sort_by) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
The direction in which to sort the results. Use ASCENDING to
return the smallest or earliest values first, or DESCENDING to
return the largest or most recent values first.
5968 5969 5970 5971 5972 5973 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 5968 class ProspectingFromEngagementTaskSort < Struct.new( :sort_order, :sort_by) SENSITIVE = [] include Aws::Structure end |