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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the tool.

Returns:

  • (String)


10847
10848
10849
10850
10851
10852
10853
10854
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10847

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

#input_schemaTypes::ToolInputSchema

The input schema for the tool.



10847
10848
10849
10850
10851
10852
10853
10854
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10847

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

#nameString

The name of the tool.

Returns:

  • (String)


10847
10848
10849
10850
10851
10852
10853
10854
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10847

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

#strictBoolean

Whether the tool schema is strictly enforced.

Returns:

  • (Boolean)


10847
10848
10849
10850
10851
10852
10853
10854
# File 'lib/aws-sdk-bedrockagent/types.rb', line 10847

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