Class: Aws::QConnect::Types::QueryInputData
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::QConnect::Types::QueryInputData
 
 
- Defined in:
 - gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
 
Overview
    Note:
    
  
QueryInputData is a union - when making an API calls you must set exactly one of the members.
Input information for the query.
Direct Known Subclasses
Defined Under Namespace
Classes: IntentInputData, QueryTextInputData, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #intent_input_data  ⇒ Types::IntentInputData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Input information for the intent.
 - 
  
    
      #query_text_input_data  ⇒ Types::QueryTextInputData 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Input information for the query.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#intent_input_data ⇒ Types::IntentInputData
Input information for the intent.
      7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825  | 
    
      # File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7814 class QueryInputData < Struct.new( :query_text_input_data, :intent_input_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class QueryTextInputData < QueryInputData; end class IntentInputData < QueryInputData; end class Unknown < QueryInputData; end end  | 
  
#query_text_input_data ⇒ Types::QueryTextInputData
Input information for the query.
      7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825  | 
    
      # File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7814 class QueryInputData < Struct.new( :query_text_input_data, :intent_input_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class QueryTextInputData < QueryInputData; end class IntentInputData < QueryInputData; end class Unknown < QueryInputData; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      7814 7815 7816  | 
    
      # File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7814 def unknown @unknown end  |