Class: Aws::BedrockAgentRuntime::Types::RepromptResponse

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

Overview

Contains details about the agent’s response to reprompt the input.

Constant Summary collapse

SENSITIVE =
[:source]

Instance Attribute Summary collapse

Instance Attribute Details

#sourceString

Specifies what output is prompting the agent to reprompt the input.

Returns:

  • (String)


7911
7912
7913
7914
7915
7916
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 7911

class RepromptResponse < Struct.new(
  :source,
  :text)
  SENSITIVE = [:source]
  include Aws::Structure
end

#textString

The text reprompting the input.

Returns:

  • (String)


7911
7912
7913
7914
7915
7916
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 7911

class RepromptResponse < Struct.new(
  :source,
  :text)
  SENSITIVE = [:source]
  include Aws::Structure
end