Class: Aws::CostExplorer::Types::SortDefinition

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-costexplorer/types.rb

Overview

Note:

When making an API call, you may pass SortDefinition data as a hash:

{
  key: "SortDefinitionKey", # required
  sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
}

The details of how to sort the data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key by which to sort the data.

Returns:

  • (String)


6451
6452
6453
6454
6455
6456
# File 'lib/aws-sdk-costexplorer/types.rb', line 6451

class SortDefinition < Struct.new(
  :key,
  :sort_order)
  SENSITIVE = []
  include Aws::Structure
end

#sort_orderString

The order in which to sort the data.

Returns:

  • (String)


6451
6452
6453
6454
6455
6456
# File 'lib/aws-sdk-costexplorer/types.rb', line 6451

class SortDefinition < Struct.new(
  :key,
  :sort_order)
  SENSITIVE = []
  include Aws::Structure
end