Interface CfnFlowPropsMixin.FlowConnectionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.FlowConnectionProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.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.cfnpropertymixins.services.bedrock.*;
FlowConnectionProperty flowConnectionProperty = FlowConnectionProperty.builder()
.configuration(FlowConnectionConfigurationProperty.builder()
.conditional(FlowConditionalConnectionConfigurationProperty.builder()
.condition("condition")
.build())
.data(FlowDataConnectionConfigurationProperty.builder()
.sourceOutput("sourceOutput")
.targetInput("targetInput")
.build())
.build())
.name("name")
.source("source")
.target("target")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.FlowConnectionPropertystatic final classAn implementation forCfnFlowPropsMixin.FlowConnectionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe configuration of the connection.default StringgetName()A name for the connection that you can reference.default StringThe node that the connection starts at.default StringThe node that the connection ends at.default StringgetType()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
-
getConfiguration
The configuration of the connection.Returns union: either
IResolvableorCfnFlowPropsMixin.FlowConnectionConfigurationProperty- See Also:
-
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:
-
builder
-