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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlowVersion.FlowConnectionConfigurationProperty
static final class
An 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.- See Also:
-
getData
The configuration of a connection originating from a node that isn't a Condition node.- See Also:
-
builder
-