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

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

IntentInputData, QueryTextInputData, Unknown

Defined Under Namespace

Classes: IntentInputData, QueryTextInputData, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7814
7815
7816
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7814

def unknown
  @unknown
end