Class: Aws::BedrockAgentRuntime::Types::AgenticRetrieveMessage

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

Overview

A message in the agentic retrieval conversation.

Constant Summary collapse

SENSITIVE =
[:content]

Instance Attribute Summary collapse

Instance Attribute Details

#contentTypes::AgenticRetrieveMessageContent

The content of the message.



640
641
642
643
644
645
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 640

class AgenticRetrieveMessage < Struct.new(
  :content,
  :role)
  SENSITIVE = [:content]
  include Aws::Structure
end

#roleString

The role of the message sender (e.g., user or assistant).

Returns:

  • (String)


640
641
642
643
644
645
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 640

class AgenticRetrieveMessage < Struct.new(
  :content,
  :role)
  SENSITIVE = [:content]
  include Aws::Structure
end