Class: Aws::NovaAct::Types::CallResult

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

Overview

The result returned from executing a tool call.

Constant Summary collapse

SENSITIVE =
[:content]

Instance Attribute Summary collapse

Instance Attribute Details

#call_idString

The identifier of the tool call that this result corresponds to.

Returns:

  • (String)


133
134
135
136
137
138
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 133

class CallResult < Struct.new(
  :call_id,
  :content)
  SENSITIVE = [:content]
  include Aws::Structure
end

#contentArray<Types::CallResultContent>

The content returned by the tool execution, which can include text or other media types.

Returns:



133
134
135
136
137
138
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 133

class CallResult < Struct.new(
  :call_id,
  :content)
  SENSITIVE = [:content]
  include Aws::Structure
end