Class: Aws::Connect::Types::ControlPlaneAttributeFilter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

An object that can be used to specify Tag conditions inside the ‘SearchFilter`. This accepts an `OR` or `AND` (List of List) input where:

  • The top level list specifies conditions that need to be applied with ‘OR` operator.

  • The inner list specifies conditions that need to be applied with ‘AND` operator.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#and_conditionTypes::CommonAttributeAndCondition

A list of conditions which would be applied together with an ‘AND` condition.



2931
2932
2933
2934
2935
2936
2937
# File 'lib/aws-sdk-connect/types.rb', line 2931

class ControlPlaneAttributeFilter < Struct.new(
  :or_conditions,
  :and_condition,
  :tag_condition)
  SENSITIVE = []
  include Aws::Structure
end

#or_conditionsArray<Types::CommonAttributeAndCondition>

A list of conditions which would be applied together with an ‘OR` condition.



2931
2932
2933
2934
2935
2936
2937
# File 'lib/aws-sdk-connect/types.rb', line 2931

class ControlPlaneAttributeFilter < Struct.new(
  :or_conditions,
  :and_condition,
  :tag_condition)
  SENSITIVE = []
  include Aws::Structure
end

#tag_conditionTypes::TagCondition

A leaf node condition which can be used to specify a tag condition, for example, ‘HAVE BPO = 123`.

Returns:



2931
2932
2933
2934
2935
2936
2937
# File 'lib/aws-sdk-connect/types.rb', line 2931

class ControlPlaneAttributeFilter < Struct.new(
  :or_conditions,
  :and_condition,
  :tag_condition)
  SENSITIVE = []
  include Aws::Structure
end