Class: Aws::BedrockAgentRuntime::Types::RetrievalContent

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

Overview

The content retrieved from a knowledge source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#byte_contentString

The binary content of the retrieved item.

Returns:

  • (String)


8169
8170
8171
8172
8173
8174
8175
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 8169

class RetrievalContent < Struct.new(
  :byte_content,
  :mime_type,
  :text)
  SENSITIVE = []
  include Aws::Structure
end

#mime_typeString

The MIME type of the retrieved content.

Returns:

  • (String)


8169
8170
8171
8172
8173
8174
8175
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 8169

class RetrievalContent < Struct.new(
  :byte_content,
  :mime_type,
  :text)
  SENSITIVE = []
  include Aws::Structure
end

#textString

The text content of the retrieved item.

Returns:

  • (String)


8169
8170
8171
8172
8173
8174
8175
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 8169

class RetrievalContent < Struct.new(
  :byte_content,
  :mime_type,
  :text)
  SENSITIVE = []
  include Aws::Structure
end