Class: Aws::BedrockAgentRuntime::Types::PreProcessingParsedResponse

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

Overview

Details about the response from the Lambda parsing of the output from the pre-processing step.

Constant Summary collapse

SENSITIVE =
[:rationale]

Instance Attribute Summary collapse

Instance Attribute Details

#is_validBoolean

Whether the user input is valid or not. If false, the agent doesn't proceed to orchestration.

Returns:

  • (Boolean)


1545
1546
1547
1548
1549
1550
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1545

class PreProcessingParsedResponse < Struct.new(
  :is_valid,
  :rationale)
  SENSITIVE = [:rationale]
  include Aws::Structure
end

#rationaleString

The text returned by the parsing of the pre-processing step, explaining the steps that the agent plans to take in orchestration, if the user input is valid.

Returns:

  • (String)


1545
1546
1547
1548
1549
1550
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1545

class PreProcessingParsedResponse < Struct.new(
  :is_valid,
  :rationale)
  SENSITIVE = [:rationale]
  include Aws::Structure
end