Interface CfnFlow.FlowConnectionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.FlowConnectionProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlow.FlowConnectionProperty
static final class
An implementation forCfnFlow.FlowConnectionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The 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.- See Also:
-
builder
-