Class: Aws::Connect::Types::ControlPlaneUserAttributeFilter

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 or Hierarchy Group conditions inside the SearchFilter.

This accepts an OR of 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.

Only one field can be populated. Maximum number of allowed Tag conditions is 25. Maximum number of allowed Hierarchy Group conditions is 20.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#and_conditionTypes::AttributeAndCondition

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



2416
2417
2418
2419
2420
2421
2422
2423
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2416

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

#hierarchy_group_conditionTypes::HierarchyGroupCondition

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



2416
2417
2418
2419
2420
2421
2422
2423
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2416

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

#or_conditionsArray<Types::AttributeAndCondition>

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

Returns:



2416
2417
2418
2419
2420
2421
2422
2423
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2416

class ControlPlaneUserAttributeFilter < Struct.new(
  :or_conditions,
  :and_condition,
  :tag_condition,
  :hierarchy_group_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:



2416
2417
2418
2419
2420
2421
2422
2423
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 2416

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