interface FlowConnectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnFlowVersion.FlowConnectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlowVersion_FlowConnectionConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnFlowVersion.FlowConnectionConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnFlowVersion.FlowConnectionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlowVersion » FlowConnectionConfigurationProperty |
The configuration of the connection.
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 flowConnectionConfigurationProperty: bedrock.CfnFlowVersion.FlowConnectionConfigurationProperty = {
conditional: {
condition: 'condition',
},
data: {
sourceOutput: 'sourceOutput',
targetInput: 'targetInput',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| conditional? | IResolvable | Flow | The configuration of a connection originating from a Condition node. |
| data? | IResolvable | Flow | The configuration of a connection originating from a node that isn't a Condition node. |
conditional?
Type:
IResolvable | Flow
(optional)
The configuration of a connection originating from a Condition node.
data?
Type:
IResolvable | Flow
(optional)
The configuration of a connection originating from a node that isn't a Condition node.

.NET
Go
Java
Python
TypeScript