interface FlowConnectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowPropsMixin.FlowConnectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowPropsMixin_FlowConnectionProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowPropsMixin.FlowConnectionProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowPropsMixin.FlowConnectionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const flowConnectionProperty: bedrock_mixins.CfnFlowPropsMixin.FlowConnectionProperty = {
configuration: {
conditional: {
condition: 'condition',
},
data: {
sourceOutput: 'sourceOutput',
targetInput: 'targetInput',
},
},
name: 'name',
source: 'source',
target: 'target',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration? | IResolvable | Flow | 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 ). |
configuration?
Type:
IResolvable | Flow
(optional)
The configuration of the connection.
name?
Type:
string
(optional)
A name for the connection that you can reference.
source?
Type:
string
(optional)
The node that the connection starts at.
target?
Type:
string
(optional)
The node that the connection ends at.
type?
Type:
string
(optional)
Whether the source node that the connection begins from is a condition node ( Conditional ) or not ( Data ).

.NET
Go
Java
Python
TypeScript