Class: Aws::Connect::Types::UserSearchFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::UserSearchFilter
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Filters to be applied to search results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tag_filter ⇒ Types::ControlPlaneTagFilter
An object that can be used to specify Tag conditions inside the
SearchFilter. -
#user_attribute_filter ⇒ Types::ControlPlaneUserAttributeFilter
An object that can be used to specify Tag conditions or Hierarchy Group conditions inside the SearchFilter.
Instance Attribute Details
#tag_filter ⇒ Types::ControlPlaneTagFilter
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
ORoperatorInner list specifies conditions that need to be applied with
ANDoperator.
28740 28741 28742 28743 28744 28745 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28740 class UserSearchFilter < Struct.new( :tag_filter, :user_attribute_filter) SENSITIVE = [] include Aws::Structure end |
#user_attribute_filter ⇒ Types::ControlPlaneUserAttributeFilter
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
ORoperator.The inner list specifies conditions that need to be applied with
ANDoperator.
28740 28741 28742 28743 28744 28745 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28740 class UserSearchFilter < Struct.new( :tag_filter, :user_attribute_filter) SENSITIVE = [] include Aws::Structure end |