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.
8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8778 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.
8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8778 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.
8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8778 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
8778 8779 8780 |
# File 'lib/aws-sdk-qconnect/types.rb', line 8778 def unknown @unknown end |