Class: Aws::BedrockAgentRuntime::Types::NodeInputField

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#categoryString

The category of the input field.

Returns:

  • (String)


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

#contentTypes::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_chainArray<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

#nameString

The name of the input field as defined in the node's input schema.

Returns:

  • (String)


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

#sourceTypes::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

#typeString

The data type of the input field for compatibility validation.

Returns:

  • (String)


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