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]

Instance Attribute Summary collapse

Instance Attribute Details

#contentTypes::NodeExecutionContent

The content of the output field, which can contain text or structured data.



5590
5591
5592
5593
5594
5595
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5590

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

#nameString

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

Returns:

  • (String)


5590
5591
5592
5593
5594
5595
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5590

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