Class: Aws::CostExplorer::Types::TagValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::TagValues
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
The values that are available for a tag.
If Values and Key aren't specified, the ABSENT MatchOption is
applied to all tags. That is, it's filtered on resources with no
tags.
If Key is provided and Values isn't specified, the ABSENT
MatchOption is applied to the tag Key only. That is, it's
filtered on resources without the given tag key.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key for the tag.
-
#match_options ⇒ Array<String>
The match options that you can use to filter your results.
-
#values ⇒ Array<String>
The specific value of the tag.
Instance Attribute Details
#key ⇒ String
The key for the tag.
8099 8100 8101 8102 8103 8104 8105 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 8099 class TagValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |
#match_options ⇒ Array<String>
The match options that you can use to filter your results.
MatchOptions is only applicable for actions related to Cost
Category. The default values for MatchOptions are EQUALS and
CASE_SENSITIVE.
8099 8100 8101 8102 8103 8104 8105 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 8099 class TagValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |