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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMissionProfile.DataflowEdgePropertystatic final classAn implementation forCfnMissionProfile.DataflowEdgeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestination
The ARN of the destination for this dataflow edge.For example, specify the ARN of a dataflow endpoint config for a downlink edge or an antenna uplink config for an uplink edge.
-
getSource
The ARN of the source for this dataflow edge.For example, specify the ARN of an antenna downlink config for a downlink edge or a dataflow endpoint config for an uplink edge.
-
builder
-