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:



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_statementString

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

Returns:

  • (String)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1958
1959
1960
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1958

def unknown
  @unknown
end