Class: Aws::BCMDashboards::Types::CostCategoryValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::CostCategoryValues
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
Specifies the values and match options for cost category-based filtering in cost and usage queries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the cost category to filter on.
-
#match_options ⇒ Array<String>
The match options for cost category values, such as
EQUALS,CONTAINS,STARTS_WITH, orENDS_WITH. -
#values ⇒ Array<String>
The values to match for the specified cost category key.
Instance Attribute Details
#key ⇒ String
The key of the cost category to filter on.
90 91 92 93 94 95 96 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 90 class CostCategoryValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |
#match_options ⇒ Array<String>
The match options for cost category values, such as EQUALS,
CONTAINS, STARTS_WITH, or ENDS_WITH.
90 91 92 93 94 95 96 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 90 class CostCategoryValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The values to match for the specified cost category key.
90 91 92 93 94 95 96 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 90 class CostCategoryValues < Struct.new( :key, :values, :match_options) SENSITIVE = [] include Aws::Structure end |