Class: Aws::NovaAct::Types::Call

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

Overview

A request for the client to execute a specific tool with given parameters.

Constant Summary collapse

SENSITIVE =
[:input]

Instance Attribute Summary collapse

Instance Attribute Details

#call_idString

A unique identifier for this tool call, used to match results back to requests.

Returns:

  • (String)


112
113
114
115
116
117
118
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 112

class Call < Struct.new(
  :call_id,
  :input,
  :name)
  SENSITIVE = [:input]
  include Aws::Structure
end

#inputHash, ...

The input parameters for the tool call, formatted according to the tool's schema.

Returns:

  • (Hash, Array, String, Numeric, Boolean)


112
113
114
115
116
117
118
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 112

class Call < Struct.new(
  :call_id,
  :input,
  :name)
  SENSITIVE = [:input]
  include Aws::Structure
end

#nameString

The name of the tool to invoke, following the pattern 'tool.toolName' or 'browser.browserAction'.

Returns:

  • (String)


112
113
114
115
116
117
118
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 112

class Call < Struct.new(
  :call_id,
  :input,
  :name)
  SENSITIVE = [:input]
  include Aws::Structure
end