Class: Aws::GuardDuty::Types::SortCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::SortCriteria
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Note:
When making an API call, you may pass SortCriteria data as a hash:
{
attribute_name: "String",
order_by: "ASC", # accepts ASC, DESC
}
Contains information about the criteria used for sorting findings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
Represents the finding attribute (for example, accountId) to sort findings by.
-
#order_by ⇒ String
The order by which the sorted findings are to be displayed.
Instance Attribute Details
#attribute_name ⇒ String
Represents the finding attribute (for example, accountId) to sort findings by.
4109 4110 4111 4112 4113 4114 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4109 class SortCriteria < Struct.new( :attribute_name, :order_by) SENSITIVE = [] include Aws::Structure end |
#order_by ⇒ String
The order by which the sorted findings are to be displayed.
4109 4110 4111 4112 4113 4114 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4109 class SortCriteria < Struct.new( :attribute_name, :order_by) SENSITIVE = [] include Aws::Structure end |