Class: Aws::BedrockAgentRuntime::Types::PreProcessingParsedResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::PreProcessingParsedResponse
- 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
-
#is_valid ⇒ Boolean
Whether the user input is valid or not.
-
#rationale ⇒ String
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.
Instance Attribute Details
#is_valid ⇒ Boolean
Whether the user input is valid or not. If false
, the agent
doesn't proceed to orchestration.
3542 3543 3544 3545 3546 3547 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3542 class PreProcessingParsedResponse < Struct.new( :is_valid, :rationale) SENSITIVE = [:rationale] include Aws::Structure end |
#rationale ⇒ String
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.
3542 3543 3544 3545 3546 3547 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3542 class PreProcessingParsedResponse < Struct.new( :is_valid, :rationale) SENSITIVE = [:rationale] include Aws::Structure end |