Class: Aws::BedrockAgentRuntime::Types::NodeOutputField
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::NodeOutputField
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Represents an output field produced by a node during a flow execution.
Constant Summary collapse
- SENSITIVE =
[:content, :next]
Instance Attribute Summary collapse
-
#content ⇒ Types::NodeExecutionContent
The content of the output field, which can contain text or structured data.
-
#name ⇒ String
The name of the output field as defined in the node's output schema.
-
#next ⇒ Array<Types::NodeOutputNext>
The next node that receives output data from this field.
-
#type ⇒ String
The data type of the output field for compatibility validation.
Instance Attribute Details
#content ⇒ Types::NodeExecutionContent
The content of the output field, which can contain text or structured data.
5886 5887 5888 5889 5890 5891 5892 5893 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5886 class NodeOutputField < Struct.new( :name, :content, :next, :type) SENSITIVE = [:content, :next] include Aws::Structure end |
#name ⇒ String
The name of the output field as defined in the node's output schema.
5886 5887 5888 5889 5890 5891 5892 5893 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5886 class NodeOutputField < Struct.new( :name, :content, :next, :type) SENSITIVE = [:content, :next] include Aws::Structure end |
#next ⇒ Array<Types::NodeOutputNext>
The next node that receives output data from this field.
5886 5887 5888 5889 5890 5891 5892 5893 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5886 class NodeOutputField < Struct.new( :name, :content, :next, :type) SENSITIVE = [:content, :next] include Aws::Structure end |
#type ⇒ String
The data type of the output field for compatibility validation.
5886 5887 5888 5889 5890 5891 5892 5893 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5886 class NodeOutputField < Struct.new( :name, :content, :next, :type) SENSITIVE = [:content, :next] include Aws::Structure end |