Class: Aws::BedrockRuntime::Types::ToolSpecification

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

Overview

The specification for the tool. For more information, see [Call a tool with the Converse API] in the Amazon Bedrock User Guide.

[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 for the tool.

Returns:

  • (String)


4447
4448
4449
4450
4451
4452
4453
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4447

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

#input_schemaTypes::ToolInputSchema

The input schema for the tool in JSON format.



4447
4448
4449
4450
4451
4452
4453
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4447

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

#nameString

The name for the tool.

Returns:

  • (String)


4447
4448
4449
4450
4451
4452
4453
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4447

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