interface UplinkAwsGroundStationAgentEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2_UplinkAwsGroundStationAgentEndpointProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2 » UplinkAwsGroundStationAgentEndpointProperty |
Definition for an uplink agent 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 uplinkAwsGroundStationAgentEndpointProperty: groundstation.CfnDataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointProperty = {
dataflowDetails: {
agentConnectionDetails: {
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,
},
},
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataflow | IResolvable | Uplink | Dataflow details for the uplink endpoint. |
| name | string | Uplink dataflow endpoint name. |
dataflowDetails
Type:
IResolvable | Uplink
Dataflow details for the uplink endpoint.
name
Type:
string
Uplink dataflow endpoint name.

.NET
Go
Java
Python
TypeScript