Class: Aws::QConnect::Types::QueryInputData

Inherits:
Struct
  • Object
show all
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.

Defined Under Namespace

Classes: CaseSummarizationInputData, IntentInputData, QueryTextInputData, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#case_summarization_input_dataTypes::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_dataTypes::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_dataTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



8778
8779
8780
# File 'lib/aws-sdk-qconnect/types.rb', line 8778

def unknown
  @unknown
end