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.
3760 3761 3762 3763 3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3760 class FlowConnection < Struct.new( :configuration, :name, :source, :target, :type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the connection that you can reference.
3760 3761 3762 3763 3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3760 class FlowConnection < Struct.new( :configuration, :name, :source, :target, :type) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The node that the connection starts at.
3760 3761 3762 3763 3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3760 class FlowConnection < Struct.new( :configuration, :name, :source, :target, :type) SENSITIVE = [] include Aws::Structure end |
#target ⇒ String
The node that the connection ends at.
3760 3761 3762 3763 3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3760 class FlowConnection < Struct.new( :configuration, :name, :source, :target, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Whether the source node that the connection begins from is a
condition node (Conditional
) or not (Data
).
3760 3761 3762 3763 3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3760 class FlowConnection < Struct.new( :configuration, :name, :source, :target, :type) SENSITIVE = [] include Aws::Structure end |