Class: Aws::BedrockAgent::Types::FlowNodeOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrockagent/types.rb

Overview

Contains configurations for an output from a node.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

A name for the output that you can reference.

Returns:

  • (String)


3265
3266
3267
3268
3269
3270
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3265

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

#typeString

The data type of the output. If the output doesn’t match this type at runtime, a validation error will be thrown.

Returns:

  • (String)


3265
3266
3267
3268
3269
3270
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3265

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