Class: Aws::AccessAnalyzer::Types::SortCriteria

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#attribute_nameString

The name of the attribute to sort on.

Returns:

  • (String)

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_byString

The sort order, ascending or descending.

Returns:

  • (String)

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