Interface CfnFlowVersionPropsMixin.FlowConnectionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersionPropsMixin.FlowConnectionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersionPropsMixin
@Stability(Stable)
public static interface CfnFlowVersionPropsMixin.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.cfnpropertymixins.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 classstatic final classAn implementation forCfnFlowVersionPropsMixin.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
IResolvableorCfnFlowVersionPropsMixin.FlowConditionalConnectionConfigurationProperty- See Also:
-
getData
The configuration of a connection originating from a node that isn't a Condition node.Returns union: either
IResolvableorCfnFlowVersionPropsMixin.FlowDataConnectionConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnFlowVersionPropsMixin.FlowConnectionConfigurationProperty.Builder builder()
-