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.



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7476
7477
7478
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7476

def unknown
  @unknown
end