interface FlowDataConnectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.FlowDataConnectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_FlowDataConnectionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.FlowDataConnectionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.FlowDataConnectionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const flowDataConnectionConfigurationProperty: bedrock.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