Interface CfnFlowVersion.FlowConnectionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersion.FlowConnectionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersion
@Stability(Stable)
public static interface CfnFlowVersion.FlowConnectionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration of the connection.
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.*;
FlowConnectionConfigurationProperty flowConnectionConfigurationProperty = FlowConnectionConfigurationProperty.builder()
.conditional(FlowConditionalConnectionConfigurationProperty.builder()
.condition("condition")
.build())
.data(FlowDataConnectionConfigurationProperty.builder()
.sourceOutput("sourceOutput")
.targetInput("targetInput")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowVersion.FlowConnectionConfigurationPropertystatic final classAn implementation forCfnFlowVersion.FlowConnectionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditional
The configuration of a connection originating from a Condition node.Returns union: either
IResolvableorCfnFlowVersion.FlowConditionalConnectionConfigurationProperty- See Also:
-
getData
The configuration of a connection originating from a node that isn't a Condition node.Returns union: either
IResolvableorCfnFlowVersion.FlowDataConnectionConfigurationProperty- See Also:
-
builder
-