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