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: