Class: Aws::BedrockRuntime::Types::ToolResultContentBlock

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

Overview

Note:

ToolResultContentBlock is a union - when making an API calls you must set exactly one of the members.

Note:

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. 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

Direct Known Subclasses

Document, Image, Json, Text, Unknown, Video

Defined Under Namespace

Classes: Document, Image, Json, Text, Unknown, Video

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#documentTypes::DocumentBlock

A tool result that is a document.



4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4297

class ToolResultContentBlock < Struct.new(
  :json,
  :text,
  :image,
  :document,
  :video,
  :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 Video < ToolResultContentBlock; end
  class Unknown < ToolResultContentBlock; end
end

#imageTypes::ImageBlock

A tool result that is an image.

<note markdown=“1”> This field is only supported by Amazon Nova and Anthropic Claude 3 and 4 models.

</note>

Returns:



4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4297

class ToolResultContentBlock < Struct.new(
  :json,
  :text,
  :image,
  :document,
  :video,
  :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 Video < ToolResultContentBlock; end
  class Unknown < ToolResultContentBlock; end
end

#jsonHash, ...

A tool result that is JSON format data.

Returns:

  • (Hash, Array, String, Numeric, Boolean)


4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4297

class ToolResultContentBlock < Struct.new(
  :json,
  :text,
  :image,
  :document,
  :video,
  :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 Video < ToolResultContentBlock; end
  class Unknown < ToolResultContentBlock; end
end

#textString

A tool result that is text.

Returns:

  • (String)


4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4297

class ToolResultContentBlock < Struct.new(
  :json,
  :text,
  :image,
  :document,
  :video,
  :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 Video < ToolResultContentBlock; end
  class Unknown < ToolResultContentBlock; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4297
4298
4299
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4297

def unknown
  @unknown
end

#videoTypes::VideoBlock

A tool result that is video.

Returns:



4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 4297

class ToolResultContentBlock < Struct.new(
  :json,
  :text,
  :image,
  :document,
  :video,
  :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 Video < ToolResultContentBlock; end
  class Unknown < ToolResultContentBlock; end
end