interface UplinkDataflowDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupV2PropsMixin_UplinkDataflowDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupV2PropsMixin » UplinkDataflowDetailsProperty |
Dataflow details for an uplink 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/cfn-property-mixins';
const uplinkDataflowDetailsProperty: groundstation.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty = {
agentConnectionDetails: {
agentIpAndPortAddress: {
mtu: 123,
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
},
ingressAddressAndPort: {
mtu: 123,
socketAddress: {
name: 'name',
port: 123,
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | IResolvable | Uplink | Uplink connection details for customer to Agent and Agent to Ground Station. |
agentConnectionDetails?
Type:
IResolvable | Uplink
(optional)
Uplink connection details for customer to Agent and Agent to Ground Station.

.NET
Go
Java
Python
TypeScript