Class: Aws::BedrockAgent::Types::ToolSpecification

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrockagent/types.rb

Overview

Contains a specification for a tool. For more information, see [Use a tool to complete an Amazon Bedrock model response].

[1]: docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the tool.

Returns:

  • (String)


10322
10323
10324
10325
10326
10327
10328
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10322

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

#input_schemaTypes::ToolInputSchema

The input schema for the tool.



10322
10323
10324
10325
10326
10327
10328
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10322

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

#nameString

The name of the tool.

Returns:

  • (String)


10322
10323
10324
10325
10326
10327
10328
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10322

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