Class: Aws::BedrockAgentRuntime::Types::NodeInputField
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::NodeInputField
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Represents an input field provided to a node during a flow execution.
Constant Summary collapse
- SENSITIVE =
[:content]
Instance Attribute Summary collapse
-
#category ⇒ String
The category of the input field.
-
#content ⇒ Types::NodeExecutionContent
The content of the input field, which can contain text or structured data.
-
#execution_chain ⇒ Array<Types::NodeInputExecutionChainItem>
The execution path through nested nodes like iterators and loops.
-
#name ⇒ String
The name of the input field as defined in the node's input schema.
-
#source ⇒ Types::NodeInputSource
The source node that provides input data to this field.
-
#type ⇒ String
The data type of the input field for compatibility validation.
Instance Attribute Details
#category ⇒ String
The category of the input field.
5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5794 class NodeInputField < Struct.new( :name, :content, :source, :type, :category, :execution_chain) SENSITIVE = [:content] include Aws::Structure end |
#content ⇒ Types::NodeExecutionContent
The content of the input field, which can contain text or structured data.
5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5794 class NodeInputField < Struct.new( :name, :content, :source, :type, :category, :execution_chain) SENSITIVE = [:content] include Aws::Structure end |
#execution_chain ⇒ Array<Types::NodeInputExecutionChainItem>
The execution path through nested nodes like iterators and loops.
5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5794 class NodeInputField < Struct.new( :name, :content, :source, :type, :category, :execution_chain) SENSITIVE = [:content] include Aws::Structure end |
#name ⇒ String
The name of the input field as defined in the node's input schema.
5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5794 class NodeInputField < Struct.new( :name, :content, :source, :type, :category, :execution_chain) SENSITIVE = [:content] include Aws::Structure end |
#source ⇒ Types::NodeInputSource
The source node that provides input data to this field.
5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5794 class NodeInputField < Struct.new( :name, :content, :source, :type, :category, :execution_chain) SENSITIVE = [:content] include Aws::Structure end |
#type ⇒ String
The data type of the input field for compatibility validation.
5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5794 class NodeInputField < Struct.new( :name, :content, :source, :type, :category, :execution_chain) SENSITIVE = [:content] include Aws::Structure end |