interface FlowConnectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnFlowVersion.FlowConnectionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlowVersion_FlowConnectionProperty |
Java | software.amazon.awscdk.services.bedrock.CfnFlowVersion.FlowConnectionProperty |
Python | aws_cdk.aws_bedrock.CfnFlowVersion.FlowConnectionProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlowVersion » FlowConnectionProperty |
Contains information about a connection between two nodes in the flow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const flowConnectionProperty: bedrock.CfnFlowVersion.FlowConnectionProperty = {
name: 'name',
source: 'source',
target: 'target',
type: 'type',
// the properties below are optional
configuration: {
conditional: {
condition: 'condition',
},
data: {
sourceOutput: 'sourceOutput',
targetInput: 'targetInput',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| 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 ). |
| configuration? | IResolvable | Flow | The configuration of the connection. |
name
Type:
string
A name for the connection that you can reference.
source
Type:
string
The node that the connection starts at.
target
Type:
string
The node that the connection ends at.
type
Type:
string
Whether the source node that the connection begins from is a condition node ( Conditional ) or not ( Data ).
configuration?
Type:
IResolvable | Flow
(optional)
The configuration of the connection.

.NET
Go
Java
Python
TypeScript