interface DownlinkAwsGroundStationAgentEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupV2PropsMixin_DownlinkAwsGroundStationAgentEndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupV2PropsMixin » DownlinkAwsGroundStationAgentEndpointProperty |
Definition for a downlink 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/cfn-property-mixins';
const downlinkAwsGroundStationAgentEndpointProperty: groundstation.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty = {
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
mtu: 123,
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
},
egressAddressAndPort: {
mtu: 123,
socketAddress: {
name: 'name',
port: 123,
},
},
},
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataflow | IResolvable | Downlink | Dataflow details for the downlink endpoint. |
| name? | string | Downlink dataflow endpoint name. |
dataflowDetails?
Type:
IResolvable | Downlink
(optional)
Dataflow details for the downlink endpoint.
name?
Type:
string
(optional)
Downlink dataflow endpoint name.

.NET
Go
Java
Python
TypeScript