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.

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.



2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2839

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 Anthropic Claude 3 models.

</note>

Returns:



2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2839

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)


2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2839

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)


2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2839

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



2839
2840
2841
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2839

def unknown
  @unknown
end

#videoTypes::VideoBlock

A tool result that is video.

Returns:



2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2839

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