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.



5960
5961
5962
5963
5964
5965
5966
5967
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5960

class NodeOutputField < Struct.new(
  :content,
  :name,
  :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)


5960
5961
5962
5963
5964
5965
5966
5967
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5960

class NodeOutputField < Struct.new(
  :content,
  :name,
  :next,
  :type)
  SENSITIVE = [:content, :next]
  include Aws::Structure
end

#nextArray<Types::NodeOutputNext>

The next node that receives output data from this field.

Returns:



5960
5961
5962
5963
5964
5965
5966
5967
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5960

class NodeOutputField < Struct.new(
  :content,
  :name,
  :next,
  :type)
  SENSITIVE = [:content, :next]
  include Aws::Structure
end

#typeString

The data type of the output field for compatibility validation.

Returns:

  • (String)


5960
5961
5962
5963
5964
5965
5966
5967
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5960

class NodeOutputField < Struct.new(
  :content,
  :name,
  :next,
  :type)
  SENSITIVE = [:content, :next]
  include Aws::Structure
end