Interface CfnMissionProfile.DataflowEdgeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMissionProfile.DataflowEdgeProperty.Jsii$Proxy
Enclosing class:
CfnMissionProfile

@Stability(Stable) public static interface CfnMissionProfile.DataflowEdgeProperty extends software.amazon.jsii.JsiiSerializable
A dataflow edge defines from where and to where data will flow during a contact.

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.groundstation.*;
 DataflowEdgeProperty dataflowEdgeProperty = DataflowEdgeProperty.builder()
         .destination("destination")
         .source("source")
         .build();