Class: Aws::QApps::Types::PredictQAppInputOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb

Overview

Note:

PredictQAppInputOptions is a union - when making an API calls you must set exactly one of the members.

The input options for generating an Q App definition.

Direct Known Subclasses

Conversation, ProblemStatement, Unknown

Defined Under Namespace

Classes: Conversation, ProblemStatement, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#conversationArray<Types::ConversationMessage>

A conversation to use as input for generating the Q App definition.

Returns:



1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1374

class PredictQAppInputOptions < Struct.new(
  :conversation,
  :problem_statement,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Conversation < PredictQAppInputOptions; end
  class ProblemStatement < PredictQAppInputOptions; end
  class Unknown < PredictQAppInputOptions; end
end

#problem_statementString

A problem statement to use as input for generating the Q App definition.

Returns:

  • (String)


1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1374

class PredictQAppInputOptions < Struct.new(
  :conversation,
  :problem_statement,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Conversation < PredictQAppInputOptions; end
  class ProblemStatement < PredictQAppInputOptions; end
  class Unknown < PredictQAppInputOptions; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1374
1375
1376
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1374

def unknown
  @unknown
end