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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentruntime/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)


1772
1773
1774
1775
1776
1777
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1772

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

#textString

The text reprompting the input.

Returns:

  • (String)


1772
1773
1774
1775
1776
1777
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1772

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