Class: Aws::BedrockAgentRuntime::Types::AgentCollaboratorInputPayload

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

Overview

Input for an agent collaborator. The input can be text or an action invocation result.

Constant Summary collapse

SENSITIVE =
[:text]

Instance Attribute Summary collapse

Instance Attribute Details

#return_control_resultsTypes::ReturnControlResults

An action invocation result.



260
261
262
263
264
265
266
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 260

class AgentCollaboratorInputPayload < Struct.new(
  :return_control_results,
  :text,
  :type)
  SENSITIVE = [:text]
  include Aws::Structure
end

#textString

Input text.

Returns:

  • (String)


260
261
262
263
264
265
266
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 260

class AgentCollaboratorInputPayload < Struct.new(
  :return_control_results,
  :text,
  :type)
  SENSITIVE = [:text]
  include Aws::Structure
end

#typeString

The input type.

Returns:

  • (String)


260
261
262
263
264
265
266
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 260

class AgentCollaboratorInputPayload < Struct.new(
  :return_control_results,
  :text,
  :type)
  SENSITIVE = [:text]
  include Aws::Structure
end