Class: Aws::BedrockAgentRuntime::Types::FlowOutputField

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 flow 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::FlowExecutionContent

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



2102
2103
2104
2105
2106
2107
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 2102

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

#nameString

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

Returns:

  • (String)


2102
2103
2104
2105
2106
2107
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 2102

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