Class: Aws::CostExplorer::Types::GroupDefinition

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 GroupDefinition data as a hash:

{
  type: "DIMENSION", # accepts DIMENSION, TAG, COST_CATEGORY
  key: "GroupDefinitionKey",
}

Represents a group when you specify a group by criteria or in the response to a query with a specific grouping.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The string that represents a key for a specified group.

Returns:

  • (String)


4938
4939
4940
4941
4942
4943
# File 'lib/aws-sdk-costexplorer/types.rb', line 4938

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

#typeString

The string that represents the type of group.

Returns:

  • (String)


4938
4939
4940
4941
4942
4943
# File 'lib/aws-sdk-costexplorer/types.rb', line 4938

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