Class: Aws::SecurityHub::Types::SortCriterion
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::SortCriterion
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass SortCriterion data as a hash:
{
field: "NonEmptyString",
sort_order: "asc", # accepts asc, desc
}
A collection of finding attributes used to sort findings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field ⇒ String
The finding attribute used to sort findings.
-
#sort_order ⇒ String
The order used to sort findings.
Instance Attribute Details
#field ⇒ String
The finding attribute used to sort findings.
23042 23043 23044 23045 23046 23047 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 23042 class SortCriterion < Struct.new( :field, :sort_order) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
The order used to sort findings.
23042 23043 23044 23045 23046 23047 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 23042 class SortCriterion < Struct.new( :field, :sort_order) SENSITIVE = [] include Aws::Structure end |