Class: Aws::QConnect::Types::QueryInputData
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::QueryInputData
- Includes:
- Structure, Structure::Union
- Defined in:
- 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
CaseSummarizationInputData, IntentInputData, QueryTextInputData, Unknown
Defined Under Namespace
Classes: CaseSummarizationInputData, IntentInputData, QueryTextInputData, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#case_summarization_input_data ⇒ Types::CaseSummarizationInputData
Input data for case summarization queries.
-
#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
#case_summarization_input_data ⇒ Types::CaseSummarizationInputData
Input data for case summarization queries.
8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8898 class QueryInputData < Struct.new( :query_text_input_data, :intent_input_data, :case_summarization_input_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class QueryTextInputData < QueryInputData; end class IntentInputData < QueryInputData; end class CaseSummarizationInputData < QueryInputData; end class Unknown < QueryInputData; end end |
#intent_input_data ⇒ Types::IntentInputData
Input information for the intent.
8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8898 class QueryInputData < Struct.new( :query_text_input_data, :intent_input_data, :case_summarization_input_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class QueryTextInputData < QueryInputData; end class IntentInputData < QueryInputData; end class CaseSummarizationInputData < QueryInputData; end class Unknown < QueryInputData; end end |
#query_text_input_data ⇒ Types::QueryTextInputData
Input information for the query.
8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8898 class QueryInputData < Struct.new( :query_text_input_data, :intent_input_data, :case_summarization_input_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class QueryTextInputData < QueryInputData; end class IntentInputData < QueryInputData; end class CaseSummarizationInputData < QueryInputData; end class Unknown < QueryInputData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
8898 8899 8900 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8898 def unknown @unknown end |