Class: Aws::AccessAnalyzer::Types::SortCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::SortCriteria
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/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
}
The criteria used to sort.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The name of the attribute to sort on.
-
#order_by ⇒ String
The sort order, ascending or descending.
Instance Attribute Details
#attribute_name ⇒ String
The name of the attribute to sort on.
2950 2951 2952 2953 2954 2955 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2950 class SortCriteria < Struct.new( :attribute_name, :order_by) SENSITIVE = [] include Aws::Structure end |
#order_by ⇒ String
The sort order, ascending or descending.
2950 2951 2952 2953 2954 2955 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2950 class SortCriteria < Struct.new( :attribute_name, :order_by) SENSITIVE = [] include Aws::Structure end |