Class: Aws::CostExplorer::Types::ResourceTag

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

Overview

The tag structure that contains a tag key and value.

Tagging is supported only for the following Cost Explorer resource types: AnomalyMonitor , AnomalySubscription , CostCategory .

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key that's associated with the tag.

Returns:

  • (String)


5939
5940
5941
5942
5943
5944
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5939

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

#valueString

The value that's associated with the tag.

Returns:

  • (String)


5939
5940
5941
5942
5943
5944
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5939

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