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.
7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7476 class QueryInputData < Struct.new( :intent_input_data, :query_text_input_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IntentInputData < QueryInputData; end class QueryTextInputData < QueryInputData; end class Unknown < QueryInputData; end end |
#query_text_input_data ⇒ Types::QueryTextInputData
Input information for the query.
7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7476 class QueryInputData < Struct.new( :intent_input_data, :query_text_input_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IntentInputData < QueryInputData; end class QueryTextInputData < QueryInputData; end class Unknown < QueryInputData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7476 7477 7478 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7476 def unknown @unknown end |