interface FlowDataConnectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowPropsMixin.FlowDataConnectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowPropsMixin_FlowDataConnectionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowPropsMixin.FlowDataConnectionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowPropsMixin.FlowDataConnectionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowPropsMixin » FlowDataConnectionConfigurationProperty |
The configuration of a connection originating from a node that isn't a Condition node.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const flowDataConnectionConfigurationProperty: bedrock_mixins.CfnFlowPropsMixin.FlowDataConnectionConfigurationProperty = {
sourceOutput: 'sourceOutput',
targetInput: 'targetInput',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The name of the output in the source node that the connection begins from. |
| target | string | The name of the input in the target node that the connection ends at. |
sourceOutput?
Type:
string
(optional)
The name of the output in the source node that the connection begins from.
targetInput?
Type:
string
(optional)
The name of the input in the target node that the connection ends at.

.NET
Go
Java
Python
TypeScript