Class: Aws::NovaAct::Types::CallResultContent

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

Overview

Note:

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

Content returned from a tool call execution.

Direct Known Subclasses

Text, Unknown

Defined Under Namespace

Classes: Text, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#textString

Text content returned from the tool execution.

Returns:

  • (String)


150
151
152
153
154
155
156
157
158
159
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 150

class CallResultContent < Struct.new(
  :text,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Text < CallResultContent; end
  class Unknown < CallResultContent; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



150
151
152
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 150

def unknown
  @unknown
end