Class: Aws::CostExplorer::Types::DimensionValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::DimensionValues
- Includes:
- Structure
- Defined in:
- 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].
[1]: docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_CostCategoryRule.html [2]: docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_AnomalySubscription.html
1811 1812 1813 1814 1815 1816 1817 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 1811 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.
1811 1812 1813 1814 1815 1816 1817 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 1811 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.
1811 1812 1813 1814 1815 1816 1817 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 1811 class DimensionValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |