interface UplinkConnectionDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.UplinkConnectionDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_UplinkConnectionDetailsProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.UplinkConnectionDetailsProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.UplinkConnectionDetailsProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » UplinkConnectionDetailsProperty |
Connection details for customer to Agent and Agent to Ground Station.
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 uplinkConnectionDetailsProperty: groundstation.CfnDataflowEndpointGroupV2.UplinkConnectionDetailsProperty = {
agentIpAndPortAddress: {
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
// the properties below are optional
mtu: 123,
},
ingressAddressAndPort: {
socketAddress: {
name: 'name',
port: 123,
},
// the properties below are optional
mtu: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | IResolvable | Ranged | Agent IP and port address for the uplink connection. |
| ingress | IResolvable | Connection | Ingress address and port for the uplink connection. |
agentIpAndPortAddress
Type:
IResolvable | Ranged
Agent IP and port address for the uplink connection.
ingressAddressAndPort
Type:
IResolvable | Connection
Ingress address and port for the uplink connection.

.NET
Go
Java
Python
TypeScript