Class CfnFlowVersionPropsMixin.FlowConnectionProperty
Contains information about a connection between two nodes in the flow.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowVersionPropsMixin.FlowConnectionProperty : CfnFlowVersionPropsMixin.IFlowConnectionProperty
Syntax (vb)
Public Class CfnFlowVersionPropsMixin.FlowConnectionProperty Implements CfnFlowVersionPropsMixin.IFlowConnectionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var flowConnectionProperty = new FlowConnectionProperty {
Configuration = new FlowConnectionConfigurationProperty {
Conditional = new FlowConditionalConnectionConfigurationProperty {
Condition = "condition"
},
Data = new FlowDataConnectionConfigurationProperty {
SourceOutput = "sourceOutput",
TargetInput = "targetInput"
}
},
Name = "name",
Source = "source",
Target = "target",
Type = "type"
};
Synopsis
Constructors
| FlowConnectionProperty() | Contains information about a connection between two nodes in the flow. |
Properties
| Configuration | The configuration of the connection. |
| Name | A name for the connection that you can reference. |
| Source | The node that the connection starts at. |
| Target | The node that the connection ends at. |
| Type | Whether the source node that the connection begins from is a condition node ( |
Constructors
FlowConnectionProperty()
Contains information about a connection between two nodes in the flow.
public FlowConnectionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var flowConnectionProperty = new FlowConnectionProperty {
Configuration = new FlowConnectionConfigurationProperty {
Conditional = new FlowConditionalConnectionConfigurationProperty {
Condition = "condition"
},
Data = new FlowDataConnectionConfigurationProperty {
SourceOutput = "sourceOutput",
TargetInput = "targetInput"
}
},
Name = "name",
Source = "source",
Target = "target",
Type = "type"
};
Properties
Configuration
The configuration of the connection.
public object? Configuration { get; set; }
Property Value
Remarks
Name
A name for the connection that you can reference.
public string? Name { get; set; }
Property Value
Remarks
Source
The node that the connection starts at.
public string? Source { get; set; }
Property Value
Remarks
Target
The node that the connection ends at.
public string? Target { get; set; }
Property Value
Remarks
Type
Whether the source node that the connection begins from is a condition node ( Conditional ) or not ( Data ).
public string? Type { get; set; }