interface DownlinkDataflowDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.DownlinkDataflowDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_DownlinkDataflowDetailsProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.DownlinkDataflowDetailsProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.DownlinkDataflowDetailsProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » DownlinkDataflowDetailsProperty |
Dataflow details for a downlink endpoint.
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-lib';
const downlinkDataflowDetailsProperty: groundstation.CfnDataflowEndpointGroupV2.DownlinkDataflowDetailsProperty = {
agentConnectionDetails: {
agentIpAndPortAddress: {
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
// the properties below are optional
mtu: 123,
},
egressAddressAndPort: {
socketAddress: {
name: 'name',
port: 123,
},
// the properties below are optional
mtu: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | IResolvable | Downlink | Downlink connection details for customer to Agent and Agent to Ground Station. |
agentConnectionDetails
Type:
IResolvable | Downlink
Downlink connection details for customer to Agent and Agent to Ground Station.

.NET
Go
Java
Python
TypeScript