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: