Class: Aws::CostExplorer::Types::DimensionValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::DimensionValues
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
The metadata that you can use to filter and group your results. You
can use GetDimensionValues to find specific values.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The names of the metadata types that you can use to filter and group your results.
-
#match_options ⇒ Array<String>
The match options that you can use to filter your results.
-
#values ⇒ Array<String>
The metadata values that you can use to filter and group your results.
Instance Attribute Details
#key ⇒ String
The names of the metadata types that you can use to filter and group
your results. For example, AZ returns a list of Availability
Zones.
Not all dimensions are supported in each API. Refer to the documentation for each specific API to see what is supported.
LINKED_ACCOUNT_NAME and SERVICE_CODE can only be used in
CostCategoryRule.
ANOMALY_TOTAL_IMPACT_ABSOLUTE and
ANOMALY_TOTAL_IMPACT_PERCENTAGE can only be used in
AnomalySubscriptions.
1781 1782 1783 1784 1785 1786 1787 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1781 class DimensionValues < 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 and Anomaly Subscriptions. Refer to the documentation for
each specific API to see what is supported.
The default values for MatchOptions are EQUALS and
CASE_SENSITIVE.
1781 1782 1783 1784 1785 1786 1787 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1781 class DimensionValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The metadata values that you can use to filter and group your
results. You can use GetDimensionValues to find specific values.
1781 1782 1783 1784 1785 1786 1787 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1781 class DimensionValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |