Class: Aws::Connect::Types::ControlPlaneTagFilter

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

Overview

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

  • Top level list specifies conditions that need to be applied with OR operator

  • Inner list specifies conditions that need to be applied with AND operator.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#and_conditionsArray<Types::TagCondition>

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

Returns:



2185
2186
2187
2188
2189
2190
2191
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2185

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

#or_conditionsArray<Array<Types::TagCondition>>

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

Returns:



2185
2186
2187
2188
2189
2190
2191
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2185

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

#tag_conditionTypes::TagCondition

A leaf node condition which can be used to specify a tag condition.

Returns:



2185
2186
2187
2188
2189
2190
2191
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2185

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