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.
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1958 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.
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1958 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
1958 1959 1960 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1958 def unknown @unknown end |