Class: Aws::BedrockAgentRuntime::Types::CodeInterpreterInvocationOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::CodeInterpreterInvocationOutput
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains the JSON-formatted string returned by the API invoked by the code interpreter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_error ⇒ String
Contains the error returned from code execution.
-
#execution_output ⇒ String
Contains the successful output returned from code execution.
-
#execution_timeout ⇒ Boolean
Indicates if the execution of the code timed out.
-
#files ⇒ Array<String>
Contains output files, if generated by code execution.
Instance Attribute Details
#execution_error ⇒ String
Contains the error returned from code execution.
590 591 592 593 594 595 596 597 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 590 class CodeInterpreterInvocationOutput < Struct.new( :execution_error, :execution_output, :execution_timeout, :files) SENSITIVE = [] include Aws::Structure end |
#execution_output ⇒ String
Contains the successful output returned from code execution
590 591 592 593 594 595 596 597 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 590 class CodeInterpreterInvocationOutput < Struct.new( :execution_error, :execution_output, :execution_timeout, :files) SENSITIVE = [] include Aws::Structure end |
#execution_timeout ⇒ Boolean
Indicates if the execution of the code timed out.
590 591 592 593 594 595 596 597 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 590 class CodeInterpreterInvocationOutput < Struct.new( :execution_error, :execution_output, :execution_timeout, :files) SENSITIVE = [] include Aws::Structure end |
#files ⇒ Array<String>
Contains output files, if generated by code execution.
590 591 592 593 594 595 596 597 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 590 class CodeInterpreterInvocationOutput < Struct.new( :execution_error, :execution_output, :execution_timeout, :files) SENSITIVE = [] include Aws::Structure end |