Class: Aws::BedrockAgent::Types::FlowDefinition

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

Overview

The definition of the nodes and connections between nodes in the flow.

Constant Summary collapse

SENSITIVE =
[:nodes]

Instance Attribute Summary collapse

Instance Attribute Details

#connectionsArray<Types::FlowConnection>

An array of connection definitions in the flow.

Returns:



3048
3049
3050
3051
3052
3053
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3048

class FlowDefinition < Struct.new(
  :connections,
  :nodes)
  SENSITIVE = [:nodes]
  include Aws::Structure
end

#nodesArray<Types::FlowNode>

An array of node definitions in the flow.

Returns:



3048
3049
3050
3051
3052
3053
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3048

class FlowDefinition < Struct.new(
  :connections,
  :nodes)
  SENSITIVE = [:nodes]
  include Aws::Structure
end