Class: Aws::BCMDashboards::Types::Expression

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#andArray<Types::Expression>

A list of expressions to combine with AND logic.

Returns:



460
461
462
463
464
465
466
467
468
469
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 460

class Expression < Struct.new(
  :or,
  :and,
  :not,
  :dimensions,
  :tags,
  :cost_categories)
  SENSITIVE = []
  include Aws::Structure
end

#cost_categoriesTypes::CostCategoryValues

The cost category values to include in the filter expression.



460
461
462
463
464
465
466
467
468
469
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 460

class Expression < Struct.new(
  :or,
  :and,
  :not,
  :dimensions,
  :tags,
  :cost_categories)
  SENSITIVE = []
  include Aws::Structure
end

#dimensionsTypes::DimensionValues

The dimension values to include in the filter expression.



460
461
462
463
464
465
466
467
468
469
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 460

class Expression < Struct.new(
  :or,
  :and,
  :not,
  :dimensions,
  :tags,
  :cost_categories)
  SENSITIVE = []
  include Aws::Structure
end

#notTypes::Expression

An expression to negate with NOT logic.

Returns:



460
461
462
463
464
465
466
467
468
469
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 460

class Expression < Struct.new(
  :or,
  :and,
  :not,
  :dimensions,
  :tags,
  :cost_categories)
  SENSITIVE = []
  include Aws::Structure
end

#orArray<Types::Expression>

A list of expressions to combine with OR logic.

Returns:



460
461
462
463
464
465
466
467
468
469
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 460

class Expression < Struct.new(
  :or,
  :and,
  :not,
  :dimensions,
  :tags,
  :cost_categories)
  SENSITIVE = []
  include Aws::Structure
end

#tagsTypes::TagValues

The tag values to include in the filter expression.

Returns:



460
461
462
463
464
465
466
467
468
469
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 460

class Expression < Struct.new(
  :or,
  :and,
  :not,
  :dimensions,
  :tags,
  :cost_categories)
  SENSITIVE = []
  include Aws::Structure
end