Class: Aws::Connect::Types::QueueSearchCriteria
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::QueueSearchCriteria
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
The search criteria to be used to return queues.
<note markdown=“1”> The ‘name` and `description` fields support “contains” queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #and_conditions  ⇒ Array<Types::QueueSearchCriteria> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of conditions which would be applied together with an AND condition.
 - 
  
    
      #or_conditions  ⇒ Array<Types::QueueSearchCriteria> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of conditions which would be applied together with an OR condition.
 - 
  
    
      #queue_type_condition  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of queue.
 - 
  
    
      #string_condition  ⇒ Types::StringCondition 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A leaf node condition which can be used to specify a string condition.
 
Instance Attribute Details
#and_conditions ⇒ Array<Types::QueueSearchCriteria>
A list of conditions which would be applied together with an AND condition.
      17902 17903 17904 17905 17906 17907 17908 17909  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17902 class QueueSearchCriteria < Struct.new( :or_conditions, :and_conditions, :string_condition, :queue_type_condition) SENSITIVE = [] include Aws::Structure end  | 
  
#or_conditions ⇒ Array<Types::QueueSearchCriteria>
A list of conditions which would be applied together with an OR condition.
      17902 17903 17904 17905 17906 17907 17908 17909  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17902 class QueueSearchCriteria < Struct.new( :or_conditions, :and_conditions, :string_condition, :queue_type_condition) SENSITIVE = [] include Aws::Structure end  | 
  
#queue_type_condition ⇒ String
The type of queue.
      17902 17903 17904 17905 17906 17907 17908 17909  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17902 class QueueSearchCriteria < Struct.new( :or_conditions, :and_conditions, :string_condition, :queue_type_condition) SENSITIVE = [] include Aws::Structure end  | 
  
#string_condition ⇒ Types::StringCondition
A leaf node condition which can be used to specify a string condition.
<note markdown=“1”> The currently supported values for ‘FieldName` are `name`, `description`, and `resourceID`.
</note>
  
      17902 17903 17904 17905 17906 17907 17908 17909  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 17902 class QueueSearchCriteria < Struct.new( :or_conditions, :and_conditions, :string_condition, :queue_type_condition) SENSITIVE = [] include Aws::Structure end  |