Class: Aws::BCMDashboards::Types::Expression
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::Expression
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
Defines complex filtering conditions using logical operators (AND
,
OR
, NOT
) and various filter types.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#and ⇒ Array<Types::Expression>
A list of expressions to combine with AND logic.
-
#cost_categories ⇒ Types::CostCategoryValues
The cost category values to include in the filter expression.
-
#dimensions ⇒ Types::DimensionValues
The dimension values to include in the filter expression.
-
#not ⇒ Types::Expression
An expression to negate with NOT logic.
-
#or ⇒ Array<Types::Expression>
A list of expressions to combine with OR logic.
-
#tags ⇒ Types::TagValues
The tag values to include in the filter expression.
Instance Attribute Details
#and ⇒ Array<Types::Expression>
A list of expressions to combine with AND logic.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 335 class Expression < Struct.new( :or, :and, :not, :dimensions, :tags, :cost_categories) SENSITIVE = [] include Aws::Structure end |
#cost_categories ⇒ Types::CostCategoryValues
The cost category values to include in the filter expression.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 335 class Expression < Struct.new( :or, :and, :not, :dimensions, :tags, :cost_categories) SENSITIVE = [] include Aws::Structure end |
#dimensions ⇒ Types::DimensionValues
The dimension values to include in the filter expression.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 335 class Expression < Struct.new( :or, :and, :not, :dimensions, :tags, :cost_categories) SENSITIVE = [] include Aws::Structure end |
#not ⇒ Types::Expression
An expression to negate with NOT logic.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 335 class Expression < Struct.new( :or, :and, :not, :dimensions, :tags, :cost_categories) SENSITIVE = [] include Aws::Structure end |
#or ⇒ Array<Types::Expression>
A list of expressions to combine with OR logic.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 335 class Expression < Struct.new( :or, :and, :not, :dimensions, :tags, :cost_categories) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Types::TagValues
The tag values to include in the filter expression.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 335 class Expression < Struct.new( :or, :and, :not, :dimensions, :tags, :cost_categories) SENSITIVE = [] include Aws::Structure end |