Class: Aws::QConnect::Types::QueryCondition
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::QConnect::Types::QueryCondition
 
 
- Defined in:
 - gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
 
Overview
    Note:
    
  
QueryCondition is a union - when making an API calls you must set exactly one of the members.
Information about how to query content.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #single  ⇒ Types::QueryConditionItem 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The condition for the query.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#single ⇒ Types::QueryConditionItem
The condition for the query.
      7765 7766 7767 7768 7769 7770 7771 7772 7773 7774  | 
    
      # File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7765 class QueryCondition < Struct.new( :single, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Single < QueryCondition; end class Unknown < QueryCondition; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      7765 7766 7767  | 
    
      # File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7765 def unknown @unknown end  |