Interface CfnFlowVersion.FlowConnectionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersion.FlowConnectionProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersion
@Stability(Stable)
public static interface CfnFlowVersion.FlowConnectionProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
FlowConnectionProperty flowConnectionProperty = FlowConnectionProperty.builder()
.name("name")
.source("source")
.target("target")
.type("type")
// the properties below are optional
.configuration(FlowConnectionConfigurationProperty.builder()
.conditional(FlowConditionalConnectionConfigurationProperty.builder()
.condition("condition")
.build())
.data(FlowDataConnectionConfigurationProperty.builder()
.sourceOutput("sourceOutput")
.targetInput("targetInput")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowVersion.FlowConnectionPropertystatic final classAn implementation forCfnFlowVersion.FlowConnectionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe configuration of the connection.getName()A name for the connection that you can reference.The node that the connection starts at.The node that the connection ends at.getType()Whether the source node that the connection begins from is a condition node (Conditional) or not (Data).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the connection that you can reference.- See Also:
-
getSource
The node that the connection starts at.- See Also:
-
getTarget
The node that the connection ends at.- See Also:
-
getType
Whether the source node that the connection begins from is a condition node (Conditional) or not (Data).- See Also:
-
getConfiguration
The configuration of the connection.Returns union: either
IResolvableorCfnFlowVersion.FlowConnectionConfigurationProperty- See Also:
-
builder
-