interface DataflowEdgeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnMissionProfilePropsMixin.DataflowEdgeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnMissionProfilePropsMixin_DataflowEdgeProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnMissionProfilePropsMixin.DataflowEdgeProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnMissionProfilePropsMixin.DataflowEdgeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnMissionProfilePropsMixin » DataflowEdgeProperty |
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 { mixins as groundstation_mixins } from '@aws-cdk/mixins-preview/aws-groundstation';
const dataflowEdgeProperty: groundstation_mixins.CfnMissionProfilePropsMixin.DataflowEdgeProperty = {
destination: 'destination',
source: 'source',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | string | The ARN of the destination for this dataflow edge. |
| source? | string | The ARN of the source for this dataflow edge. |
destination?
Type:
string
(optional)
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.
source?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript