Class: Aws::QApps::Types::PredictQAppInputOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QApps::Types::PredictQAppInputOptions
- 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
Defined Under Namespace
Classes: Conversation, ProblemStatement, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conversation ⇒ Array<Types::ConversationMessage>
A conversation to use as input for generating the Q App definition.
-
#problem_statement ⇒ String
A problem statement to use as input for generating the Q App definition.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#conversation ⇒ Array<Types::ConversationMessage>
A conversation to use as input for generating the Q App definition.
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_statement ⇒ String
A problem statement to use as input for generating the Q App definition.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1374 1375 1376 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1374 def unknown @unknown end |