Class: Aws::NovaAct::Types::ToolSpec

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

Overview

Specification for a tool that acts can invoke, including its name, description, and input schema.

Constant Summary collapse

SENSITIVE =
[:description, :input_schema]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of what the tool does and how it should be used.

Returns:

  • (String)


1100
1101
1102
1103
1104
1105
1106
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 1100

class ToolSpec < Struct.new(
  :name,
  :description,
  :input_schema)
  SENSITIVE = [:description, :input_schema]
  include Aws::Structure
end

#input_schemaTypes::ToolInputSchema

The JSON schema that defines the expected input format for the tool.



1100
1101
1102
1103
1104
1105
1106
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 1100

class ToolSpec < Struct.new(
  :name,
  :description,
  :input_schema)
  SENSITIVE = [:description, :input_schema]
  include Aws::Structure
end

#nameString

The unique name of the tool that acts will use to invoke it.

Returns:

  • (String)


1100
1101
1102
1103
1104
1105
1106
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 1100

class ToolSpec < Struct.new(
  :name,
  :description,
  :input_schema)
  SENSITIVE = [:description, :input_schema]
  include Aws::Structure
end