Class: Aws::BedrockAgentRuntime::Types::NodeOutputField

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

Flow executions is in preview release for Amazon Bedrock and is subject to change.

Constant Summary collapse

SENSITIVE =
[:content, :next]

Instance Attribute Summary collapse

Instance Attribute Details

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

#nameString

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

Returns:

  • (String)


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

#nextArray<Types::NodeOutputNext>

The next node that receives output data from this field.

Returns:



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

#typeString

The data type of the output field for compatibility validation.

Returns:

  • (String)


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