Class: Aws::BedrockAgent::Types::ToolSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::ToolSpecification
- Defined in:
- gems/aws-sdk-bedrockagent/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
-
#description ⇒ String
The description of the tool.
-
#input_schema ⇒ Types::ToolInputSchema
The input schema for the tool.
-
#name ⇒ String
The name of the tool.
-
#strict ⇒ Boolean
Whether to enforce strict JSON schema adherence for the tool input.
Instance Attribute Details
#description ⇒ String
The description of the tool.
10326 10327 10328 10329 10330 10331 10332 10333 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10326 class ToolSpecification < Struct.new( :name, :description, :input_schema, :strict) SENSITIVE = [] include Aws::Structure end |
#input_schema ⇒ Types::ToolInputSchema
The input schema for the tool.
10326 10327 10328 10329 10330 10331 10332 10333 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10326 class ToolSpecification < Struct.new( :name, :description, :input_schema, :strict) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the tool.
10326 10327 10328 10329 10330 10331 10332 10333 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10326 class ToolSpecification < Struct.new( :name, :description, :input_schema, :strict) SENSITIVE = [] include Aws::Structure end |
#strict ⇒ Boolean
Whether to enforce strict JSON schema adherence for the tool input
10326 10327 10328 10329 10330 10331 10332 10333 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 10326 class ToolSpecification < Struct.new( :name, :description, :input_schema, :strict) SENSITIVE = [] include Aws::Structure end |