Class: Aws::BedrockAgent::Types::FlowConnection
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::FlowConnection
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Contains information about a connection between two nodes in the flow.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration ⇒ Types::FlowConnectionConfiguration
The configuration of the connection.
-
#name ⇒ String
A name for the connection that you can reference.
-
#source ⇒ String
The node that the connection starts at.
-
#target ⇒ String
The node that the connection ends at.
-
#type ⇒ String
Whether the source node that the connection begins from is a condition node (
Conditional) or not (Data).
Instance Attribute Details
#configuration ⇒ Types::FlowConnectionConfiguration
The configuration of the connection.
4139 4140 4141 4142 4143 4144 4145 4146 4147 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4139 class FlowConnection < Struct.new( :type, :name, :source, :target, :configuration) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the connection that you can reference.
4139 4140 4141 4142 4143 4144 4145 4146 4147 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4139 class FlowConnection < Struct.new( :type, :name, :source, :target, :configuration) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The node that the connection starts at.
4139 4140 4141 4142 4143 4144 4145 4146 4147 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4139 class FlowConnection < Struct.new( :type, :name, :source, :target, :configuration) SENSITIVE = [] include Aws::Structure end |
#target ⇒ String
The node that the connection ends at.
4139 4140 4141 4142 4143 4144 4145 4146 4147 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4139 class FlowConnection < Struct.new( :type, :name, :source, :target, :configuration) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Whether the source node that the connection begins from is a
condition node (Conditional) or not (Data).
4139 4140 4141 4142 4143 4144 4145 4146 4147 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4139 class FlowConnection < Struct.new( :type, :name, :source, :target, :configuration) SENSITIVE = [] include Aws::Structure end |