Class: Aws::NovaAct::Types::CallResultContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::NovaAct::Types::CallResultContent
- Defined in:
- gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb
Overview
Note:
CallResultContent is a union - when making an API calls you must set exactly one of the members.
Content returned from a tool call execution.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text ⇒ String
Text content returned from the tool execution.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text ⇒ String
Text content returned from the tool execution.
150 151 152 153 154 155 156 157 158 159 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 150 class CallResultContent < Struct.new( :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Text < CallResultContent; end class Unknown < CallResultContent; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
150 151 152 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 150 def unknown @unknown end |