Class: Aws::BCMDashboards::Types::DimensionValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::DimensionValues
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
Specifies the values and match options for dimension-based filtering in cost and usage queries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the dimension to filter on (for example,
SERVICE
,USAGE_TYPE
, orOPERATION
). -
#match_options ⇒ Array<String>
The match options for dimension values, such as
EQUALS
,CONTAINS
,STARTS_WITH
, orENDS_WITH
. -
#values ⇒ Array<String>
The values to match for the specified dimension key.
Instance Attribute Details
#key ⇒ String
The key of the dimension to filter on (for example, SERVICE
,
USAGE_TYPE
, or OPERATION
).
266 267 268 269 270 271 272 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 266 class DimensionValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |
#match_options ⇒ Array<String>
The match options for dimension values, such as EQUALS
,
CONTAINS
, STARTS_WITH
, or ENDS_WITH
.
266 267 268 269 270 271 272 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 266 class DimensionValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The values to match for the specified dimension key.
266 267 268 269 270 271 272 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 266 class DimensionValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |