Class: Aws::NovaAct::Types::CallResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::NovaAct::Types::CallResult
- Defined in:
- gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb
Overview
The result returned from executing a tool call.
Constant Summary collapse
- SENSITIVE =
[:content]
Instance Attribute Summary collapse
-
#call_id ⇒ String
The identifier of the tool call that this result corresponds to.
-
#content ⇒ Array<Types::CallResultContent>
The content returned by the tool execution, which can include text or other media types.
Instance Attribute Details
#call_id ⇒ String
The identifier of the tool call that this result corresponds to.
133 134 135 136 137 138 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 133 class CallResult < Struct.new( :call_id, :content) SENSITIVE = [:content] include Aws::Structure end |
#content ⇒ Array<Types::CallResultContent>
The content returned by the tool execution, which can include text or other media types.
133 134 135 136 137 138 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 133 class CallResult < Struct.new( :call_id, :content) SENSITIVE = [:content] include Aws::Structure end |