Class: Aws::BedrockRuntime::Types::ToolResultContentBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::ToolResultContentBlock
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrockruntime/types.rb
Overview
ToolResultContentBlock is a union - when making an API calls you must set exactly one of the members.
ToolResultContentBlock is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ToolResultContentBlock corresponding to the set member.
The tool result content block.
Defined Under Namespace
Classes: Document, Image, Json, Text, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document ⇒ Types::DocumentBlock
A tool result that is a document.
-
#image ⇒ Types::ImageBlock
A tool result that is an image.
-
#json ⇒ Hash, ...
A tool result that is JSON format data.
-
#text ⇒ String
A tool result that is text.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#document ⇒ Types::DocumentBlock
A tool result that is a document.
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2248 class ToolResultContentBlock < Struct.new( :json, :text, :image, :document, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Json < ToolResultContentBlock; end class Text < ToolResultContentBlock; end class Image < ToolResultContentBlock; end class Document < ToolResultContentBlock; end class Unknown < ToolResultContentBlock; end end |
#image ⇒ Types::ImageBlock
A tool result that is an image.
<note markdown=“1”> This field is only supported by Anthropic Claude 3 models.
</note>
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2248 class ToolResultContentBlock < Struct.new( :json, :text, :image, :document, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Json < ToolResultContentBlock; end class Text < ToolResultContentBlock; end class Image < ToolResultContentBlock; end class Document < ToolResultContentBlock; end class Unknown < ToolResultContentBlock; end end |
#json ⇒ Hash, ...
A tool result that is JSON format data.
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2248 class ToolResultContentBlock < Struct.new( :json, :text, :image, :document, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Json < ToolResultContentBlock; end class Text < ToolResultContentBlock; end class Image < ToolResultContentBlock; end class Document < ToolResultContentBlock; end class Unknown < ToolResultContentBlock; end end |
#text ⇒ String
A tool result that is text.
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2248 class ToolResultContentBlock < Struct.new( :json, :text, :image, :document, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Json < ToolResultContentBlock; end class Text < ToolResultContentBlock; end class Image < ToolResultContentBlock; end class Document < ToolResultContentBlock; end class Unknown < ToolResultContentBlock; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2248 2249 2250 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2248 def unknown @unknown end |