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